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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html

Issue 1929483002: [css-grid] Fix static position for positioned grid items (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html
index d81a9d553e3b5c95af98b5d3cc1eb566d7d140e7..dff31b8a56e1d4a84d45a0411756eeaf506b1abe 100644
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html
@@ -33,13 +33,13 @@
<div class="grid">
<div class="sizedToGridArea absolute secondRowSecondColumn"
- data-offset-x="15" data-offset-y="15" data-expected-width="230" data-expected-height="230">
+ data-offset-x="0" data-offset-y="0" data-expected-width="230" data-expected-height="230">
</div>
<div class="sizedToGridArea absolute endSecondRowEndSecondColumn"
- data-offset-x="15" data-offset-y="15" data-expected-width="230" data-expected-height="230">
+ data-offset-x="0" data-offset-y="0" data-expected-width="230" data-expected-height="230">
</div>
<div class="sizedToGridArea absolute onlySecondRowOnlySecondColumn"
- data-offset-x="15" data-offset-y="15" data-expected-width="230" data-expected-height="230">
+ data-offset-x="0" data-offset-y="0" data-expected-width="230" data-expected-height="230">
</div>
</div>
@@ -48,7 +48,7 @@
data-offset-x="115" data-offset-y="65" data-expected-width="115" data-expected-height="165">
</div>
<div class="sizedToGridArea absolute endSecondRowEndSecondColumn"
- data-offset-x="15" data-offset-y="15" data-expected-width="230" data-expected-height="230">
+ data-offset-x="0" data-offset-y="0" data-expected-width="230" data-expected-height="230">
</div>
<div class="sizedToGridArea absolute onlySecondRowOnlySecondColumn"
data-offset-x="115" data-offset-y="65" data-expected-width="115" data-expected-height="165">
@@ -57,13 +57,13 @@
<div class="grid directionRTL">
<div class="sizedToGridArea absolute secondRowSecondColumn"
- data-offset-x="-15" data-offset-y="15" data-expected-width="230" data-expected-height="230">
+ data-offset-x="0" data-offset-y="0" data-expected-width="230" data-expected-height="230">
</div>
<div class="sizedToGridArea absolute endSecondRowEndSecondColumn"
- data-offset-x="-15" data-offset-y="15" data-expected-width="230" data-expected-height="230">
+ data-offset-x="0" data-offset-y="0" data-expected-width="230" data-expected-height="230">
</div>
<div class="sizedToGridArea absolute onlySecondRowOnlySecondColumn"
- data-offset-x="-15" data-offset-y="15" data-expected-width="230" data-expected-height="230">
+ data-offset-x="0" data-offset-y="0" data-expected-width="230" data-expected-height="230">
</div>
</div>
@@ -72,7 +72,7 @@
data-offset-x="0" data-offset-y="65" data-expected-width="115" data-expected-height="165">
</div>
<div class="sizedToGridArea absolute endSecondRowEndSecondColumn"
- data-offset-x="-15" data-offset-y="15" data-expected-width="230" data-expected-height="230">
+ data-offset-x="0" data-offset-y="0" data-expected-width="230" data-expected-height="230">
</div>
<div class="sizedToGridArea absolute onlySecondRowOnlySecondColumn"
data-offset-x="0" data-offset-y="65" data-expected-width="115" data-expected-height="165">

Powered by Google App Engine
This is Rietveld 408576698