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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-unknown-named-grid-line.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-unknown-named-grid-line.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-unknown-named-grid-line.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-unknown-named-grid-line.html
index c1bb6fa4e66972689edc09703b99f9d64ced6c49..9a2048f5a9a37278a01ec23f80c805df639aa1fa 100644
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-unknown-named-grid-line.html
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-unknown-named-grid-line.html
@@ -47,25 +47,25 @@
<div class="grid">
<div class="absolute sizedToGridArea startAndEndUnknownLines"
- data-offset-x="15" data-offset-y="15" data-expected-width="530" data-expected-height="330">
+ data-offset-x="0" data-offset-y="0" data-expected-width="530" data-expected-height="330">
</div>
<div class="absolute sizedToGridArea endUnknownLine"
data-offset-x="15" data-offset-y="15" data-expected-width="515" data-expected-height="315">
</div>
<div class="absolute sizedToGridArea startUnknownLine"
- data-offset-x="15" data-offset-y="15" data-expected-width="315" data-expected-height="215">
+ data-offset-x="0" data-offset-y="0" data-expected-width="315" data-expected-height="215">
</div>
</div>
<div class="grid directionRTL">
<div class="absolute sizedToGridArea startAndEndUnknownLines"
- data-offset-x="-15" data-offset-y="15" data-expected-width="530" data-expected-height="330">
+ data-offset-x="0" data-offset-y="0" data-expected-width="530" data-expected-height="330">
</div>
<div class="absolute sizedToGridArea endUnknownLine"
data-offset-x="0" data-offset-y="15" data-expected-width="515" data-expected-height="315">
</div>
<div class="absolute sizedToGridArea startUnknownLine"
- data-offset-x="200" data-offset-y="15" data-expected-width="315" data-expected-height="215">
+ data-offset-x="215" data-offset-y="0" data-expected-width="315" data-expected-height="215">
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698