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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/positioned-grid-container-percentage-tracks.html

Issue 1954683002: Revert of [css-grid] Fix definite/indefinite size detection for abspos elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/positioned-grid-container-percentage-tracks.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/positioned-grid-container-percentage-tracks.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/positioned-grid-container-percentage-tracks.html
deleted file mode 100644
index c9e2186d48ddba1647755df3473258067cbba488..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/positioned-grid-container-percentage-tracks.html
+++ /dev/null
@@ -1,103 +0,0 @@
-<!DOCTYPE html>
-<link href="resources/grid.css" rel="stylesheet">
-<style>
-
-.wrapper {
- position: relative;
- width: 100px;
- height: 100px;
-}
-
-.grid {
- position: absolute;
- font: 10px/1 Ahem;
-}
-
-.topBottomLeftRight {
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
-}
-
-.oneRowOneColumn {
- grid-template-rows: 100%;
- grid-template-columns: 100%;
-}
-
-.twoRowsTwoColumns {
- grid-template-rows: 25% 75%;
- grid-template-columns: 60% 40%;
-}
-
-</style>
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<script src="../../resources/check-layout-th.js"></script>
-<body onload="checkLayout('.grid')">
-<div id="log"></div>
-
-<p>This test checks that percentage tracks are properly resolved for absolute positioned grid containers.</p>
-
-
-<div class="wrapper">
- <div class="grid oneRowOneColumn">
- <div class="firstRowFirstColumn"
- data-offset-x="0" data-offset-y="0" data-expected-width="30" data-expected-height="10">
- XXX
- </div>
- </div>
-</div>
-
-<div class="wrapper">
- <div class="grid oneRowOneColumn topBottomLeftRight">
- <div class="firstRowFirstColumn"
- data-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="100">
- XXX
- </div>
- </div>
-</div>
-
-<div class="wrapper">
- <div class="grid twoRowsTwoColumns">
- <div class="firstRowFirstColumn"
- data-offset-x="0" data-offset-y="0" data-expected-width="30" data-expected-height="10">
- XXX
- </div>
- <div class="firstRowSecondColumn"
- data-offset-x="30" data-offset-y="0" data-expected-width="30" data-expected-height="10">
- XXX
- </div>
- <div class="secondRowFirstColumn"
- data-offset-x="0" data-offset-y="10" data-expected-width="30" data-expected-height="10">
- XXX
- </div>
- <div class="secondRowSecondColumn"
- data-offset-x="30" data-offset-y="10" data-expected-width="30" data-expected-height="10">
- XXX
- </div>
- </div>
-</div>
-
-<div class="wrapper">
- <div class="grid twoRowsTwoColumns topBottomLeftRight">
- <div class="firstRowFirstColumn"
- data-offset-x="0" data-offset-y="0" data-expected-width="60" data-expected-height="25">
- XXX
- </div>
- <div class="firstRowSecondColumn"
- data-offset-x="60" data-offset-y="0" data-expected-width="40" data-expected-height="25">
- XXX
- </div>
- <div class="secondRowFirstColumn"
- data-offset-x="0" data-offset-y="25" data-expected-width="60" data-expected-height="75">
- XXX
- </div>
- <div class="secondRowSecondColumn"
- data-offset-x="60" data-offset-y="25" data-expected-width="40" data-expected-height="75">
- XXX
- </div>
- </div>
-</div>
-
-</body>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698