Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html

Issue 208133003: [CSS Grid Layout] Prevent issues with checkLayout() in grid items (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html
diff --git a/LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html b/LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html
index 1e55c5b1b4979ed0c2d4ebd5199a022e530e997d..16b27cf2b1107db3a4a9fd9a2af0d75f9942a566 100644
--- a/LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html
+++ b/LayoutTests/fast/css-grid-layout/implicit-position-dynamic-change.html
@@ -16,7 +16,7 @@ function testPosition(gridElementID, position, size)
gridItem.style.gridRow = position.row;
gridItem.setAttribute("data-expected-width", size.width);
gridItem.setAttribute("data-expected-height", size.height);
- checkLayout("#" + gridElementID);
+ checkLayout("#" + gridElementID, document.getElementById("test-output"));
}
function updateImplicitGridColumn()
@@ -121,5 +121,7 @@ window.addEventListener("load", updateImplicitGridColumn, false);
<div class="grid gridFixedContent" id="unconstrainedGrid"><div class="sizedToGridArea">XXXXXX XXXXXX</div></div>
</div>
+<div id="test-output"></div>
+
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698