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

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

Issue 1948203004: Revert of [css-grid] Floated grid containers have indefinite width (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/floated-grid-container-percentage-tracks.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/floated-grid-container-percentage-tracks.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/floated-grid-container-percentage-tracks.html
deleted file mode 100644
index c5ccf8bf1750c9bb18fa7125ddc904a3391c97ea..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/floated-grid-container-percentage-tracks.html
+++ /dev/null
@@ -1,99 +0,0 @@
-<!DOCTYPE html>
-<link href="resources/grid.css" rel="stylesheet">
-<style>
-
-.wrapper {
- position: relative;
- clear: both;
-}
-
-.grid {
- float: left;
- font: 10px/1 Ahem;
-}
-
-.fixedSize {
- width: 200px;
- height: 200px;
-}
-
-.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 floated 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 fixedSize">
- <div class="firstRowFirstColumn"
- data-offset-x="0" data-offset-y="0" data-expected-width="200" data-expected-height="200">
- 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 fixedSize">
- <div class="firstRowFirstColumn"
- data-offset-x="0" data-offset-y="0" data-expected-width="120" data-expected-height="50">
- XXX
- </div>
- <div class="firstRowSecondColumn"
- data-offset-x="120" data-offset-y="0" data-expected-width="80" data-expected-height="50">
- XXX
- </div>
- <div class="secondRowFirstColumn"
- data-offset-x="0" data-offset-y="50" data-expected-width="120" data-expected-height="150">
- XXX
- </div>
- <div class="secondRowSecondColumn"
- data-offset-x="120" data-offset-y="50" data-expected-width="80" data-expected-height="150">
- 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