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

Unified Diff: LayoutTests/fast/regions/dialog-autosize.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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/regions/dialog-autosize.html
diff --git a/LayoutTests/fast/regions/dialog-autosize.html b/LayoutTests/fast/regions/dialog-autosize.html
deleted file mode 100644
index 9399cf0f271fa48d4ce3bbc813a55a9f11ba0aaf..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/dialog-autosize.html
+++ /dev/null
@@ -1,75 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <style>
- #content {
- font-family: Ahem;
- font-size: 20px;
- line-height: 1em;
- color: green;
- -webkit-font-smoothing: none;
- }
-
- #region1 {
- float: left;
- min-height: 120px;
- min-width: 60px;
- -webkit-flow-from: f;
- }
-
- #region2 {
- float: left;
- margin-left: 8px;
- -webkit-flow-from: f;
- }
-
- #dialog {
- position: static;
- display: block;
- border: none;
- padding: 0px;
- margin: 0px;
- -webkit-flow-into: f;
- }
-
- #p1 {
- -webkit-region-break-after: always;
- }
-
- .red {
- width: 100%;
- height: 100%;
- background-color: red;
- }
- </style>
- </head>
- <body>
- <p>
- Test whether dialog elements with auto width/height are flowed correctly
- inside a named flow. You should see two green rectangles.<br>
- Test fails if you can see any red.
- </p>
- <ol>
- </ol>
- <dialog id="dialog">
- <div id="content">
- <p id="p1">
- xxxxx<br>
- xxxxx<br>
- xxxxx<br>
- </p>
- <p id="p2">
- xxxxx<br>
- xxxxx<br>
- xxxxx
- </p>
- </div>
- </dialog>
- <div id="region1">
- <div class="red"></div>
- </div>
- <div id="region2">
- <div class="red"></div>
- </div>
- </body>
-</html>
« no previous file with comments | « LayoutTests/fast/regions/dialog-autoheight-expected.html ('k') | LayoutTests/fast/regions/dialog-autosize-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698