Title: [166356] trunk/LayoutTests
Revision
166356
Author
r...@igalia.com
Date
2014-03-27 07:39:38 -0700 (Thu, 27 Mar 2014)

Log Message

[CSS Grid Layout] Remove unused variable in fast/css-grid-layout/implicit-position-dynamic-change.html
https://bugs.webkit.org/show_bug.cgi?id=130833

Reviewed by Sergio Villar Senin.

* fast/css-grid-layout/implicit-position-dynamic-change.html: Inside
method updateImplicitGridColumn() we define a variable gridItem that
is not used. This patch removes it.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (166355 => 166356)


--- trunk/LayoutTests/ChangeLog	2014-03-27 11:33:07 UTC (rev 166355)
+++ trunk/LayoutTests/ChangeLog	2014-03-27 14:39:38 UTC (rev 166356)
@@ -1,3 +1,14 @@
+2014-03-27  Manuel Rego Casasnovas  <r...@igalia.com>
+
+        [CSS Grid Layout] Remove unused variable in fast/css-grid-layout/implicit-position-dynamic-change.html
+        https://bugs.webkit.org/show_bug.cgi?id=130833
+
+        Reviewed by Sergio Villar Senin.
+
+        * fast/css-grid-layout/implicit-position-dynamic-change.html: Inside
+        method updateImplicitGridColumn() we define a variable gridItem that
+        is not used. This patch removes it.
+
 2014-03-27  Mihnea Ovidenie  <mih...@adobe.com>
 
         [CSSRegions] Crash when cloning a region child with a content node child

Modified: trunk/LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html (166355 => 166356)


--- trunk/LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html	2014-03-27 11:33:07 UTC (rev 166355)
+++ trunk/LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html	2014-03-27 14:39:38 UTC (rev 166356)
@@ -25,7 +25,6 @@
 
 function updateImplicitGridColumn()
 {
-    var gridItem = document.getElementById("constrainedGrid").firstChild;
     testPosition("constrainedGrid", { 'column': '1', 'row': '1' }, { 'width': '50', 'height': '70' });
     testPosition("constrainedGrid", { 'column': '1', 'row': '2' }, { 'width': '50', 'height': '30' });
     testPosition("constrainedGrid", { 'column': '1', 'row': '3' }, { 'width': '50', 'height': '50' });
@@ -52,7 +51,6 @@
 
     testPosition("constrainedGrid", { 'column': '10', 'row': '15' }, { 'width': '40', 'height': '30' });
 
-    var gridItem = document.getElementById("constrainedGridUndefinedHeight").firstChild;
     testPosition("constrainedGridUndefinedHeight", { 'column': '1', 'row': '1' }, { 'width': '50', 'height': '70' });
     testPosition("constrainedGridUndefinedHeight", { 'column': '1', 'row': '2' }, { 'width': '50', 'height': '70' });
     testPosition("constrainedGridUndefinedHeight", { 'column': '1', 'row': '3' }, { 'width': '50', 'height': '50' });
@@ -79,7 +77,6 @@
 
     testPosition("constrainedGridUndefinedHeight", { 'column': '10', 'row': '15' }, { 'width': '40', 'height': '30' });
 
-    gridItem = document.getElementById("unconstrainedGrid").firstChild;
     testPosition("unconstrainedGrid", { 'column': '1', 'row': '1' }, { 'width': '50', 'height': '70' });
     testPosition("unconstrainedGrid", { 'column': '2', 'row': '1' }, { 'width': '60', 'height': '70' });
     testPosition("unconstrainedGrid", { 'column': '3', 'row': '1' }, { 'width': '130', 'height': '70' });
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to