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

Unified Diff: LayoutTests/fast/regions/dialog-nested-regions.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-nested-regions.html
diff --git a/LayoutTests/fast/regions/dialog-nested-regions.html b/LayoutTests/fast/regions/dialog-nested-regions.html
deleted file mode 100644
index ce68bd841e95c5c775bde0150604788ba3e7b9e5..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/dialog-nested-regions.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<html>
- <head>
- <style>
- #content {
- width: 20px;
- height: 20px;
- background-color: green;
- position: relative;
- display: block;
- margin: 10px;
- -webkit-flow-into: first;
- }
- #region1 {
- height: 80px;
- background-color: orange;
- border-style: solid;
- border-width: thin;
- -webkit-flow-from: first;
- -webkit-flow-into: second;
- }
- #region2 {
- width: 100px;
- height: 100px;
- background-color: gray;
- border-style: solid;
- border-width: thin;
- -webkit-flow-from: second;
- }
- .red {
- width: 100%;
- height: 100%;
- background-color: red;
- }
- </style>
- </head>
- <body>
- <p>
- The green box is a dialog element that is flowed into a nested named flow.
- </p>
- <ol>
- <li>Test passes if you see a green square inside an orange square inside a gray square.</li>
- <li>You shouldn't see any red.</li>
- </ol>
- <dialog id="content"></dialog>
- <div id="region1">
- <div class="red"></div>
- </div>
- <div id="region2">
- <div class="red"></div>
- </div>
- </body>
- <script>
- document.addEventListener("DOMContentLoaded", function() {
- var dialog = document.getElementsByTagName('dialog')[0];
- dialog.show();
- });
- </script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698