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

Unified Diff: LayoutTests/fast/regions/imbricated-flow-threads-crash.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/imbricated-flow-threads-crash.html
diff --git a/LayoutTests/fast/regions/imbricated-flow-threads-crash.html b/LayoutTests/fast/regions/imbricated-flow-threads-crash.html
deleted file mode 100644
index ba9994536650756fc4ced4dd8fb4c4cd2ddd1bb0..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/imbricated-flow-threads-crash.html
+++ /dev/null
@@ -1,69 +0,0 @@
-<html>
-<head>
- <style type="text/css">
- article{
- -webkit-flow-into: article;
- }
- .region{
- -webkit-flow-from: article;
- }
- #layout{
- -webkit-flow-into: pages;
- }
- .page{
- -webkit-flow-from: pages;
- }
- #layout .region{
- width: 50%;
- background-color: lightgreen;
- height: 100%;
- }
- #layout,
- #paginator{
- width: 200px;
- height: 500px;
- }
- #paginator .page{
- width: 100%;
- height: 100%;
- background: #ddd;
- }
- .description{
- color: blue;
- }
- </style>
-</head>
-<body>
- <div><p class="description">Text should be rendered in the green region. The test passes if there is no crash</p></div>
-
- <div id="layout">
- <div id="r1" class="region"></div>
- </div>
- <div id="paginator">
- <div class="page"></div>
- </div>
- <article>
- <p>
- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
- </p>
- </article>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
- function addNewRegion() {
- var oldRegion = document.getElementById("r1");
- var newRegion = oldRegion.cloneNode(true);
- oldRegion.parentNode.appendChild(newRegion);
- if (window.testRunner)
- testRunner.notifyDone();
- }
- function test() {
- setTimeout(addNewRegion, 0);
- }
-
- window.addEventListener("load", test, false);
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698