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

Unified Diff: LayoutTests/fast/regions/webkit-flow-renderer.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/webkit-flow-renderer.html
diff --git a/LayoutTests/fast/regions/webkit-flow-renderer.html b/LayoutTests/fast/regions/webkit-flow-renderer.html
deleted file mode 100644
index 7b4c6752668bdfb029305ea02b84810d923af760..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/webkit-flow-renderer.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!DOCTYPE HTML>
-
-<style>
-#DIV1 { -webkit-flow-into:flowA; }
-#SPAN2 { -webkit-flow-into: flowB; }
-#DIV3 { -webkit-flow-into: flowC; }
-
-#REGION1, #REGION2, #REGION3 {
- width: 100%;
- height: 100px;
-}
-#REGION1 { -webkit-flow-from: flowA; }
-#REGION2 { -webkit-flow-from: flowB; }
-#REGION3 { -webkit-flow-from: flowC; }
-</style>
-
-<div id="DIV1">DIV1 - flowA</div>
-<span id="SPAN2">SPAN2 - flowB</span>
-<div id="DIV3">DIV3 - flowC</div>
-
-<!-- Make some regions, so that the flow has a size and it's visible in the render tree. -->
-<div id="REGION1"></div>
-<div id="REGION2"></div>
-<div id="REGION3"></div>
-
-<script>
-function test(name, flow, before) {
- var el = document.createElement("div");
- el.id = name;
- el.setAttribute("style", "-webkit-flow-into:"+ flow);
- el.innerHTML = name + " - " + flow;
- if (before)
- document.body.insertBefore(el, document.getElementById(before));
- else
- document.body.appendChild(el);
-}
-
-// Insert a new element in flowA, before DIV1 (same flow-thread).
-test("DIV4", "flowA", "DIV1");
-
-// Insert a new element in flowB, before DIV1 (different flow-thread).
-test("DIV5", "flowB", "DIV1");
-
-// Insert a new element in flowB, before DIV3 (different flow-thread).
-test("DIV6", "flowB", "DIV3");
-
-// Insert a new element in flowB, before SPAN2 (same flow-thread, span inside anonymous block).
-test("DIV7", "flowB", "SPAN2");
-
-// Append a new element in flowC.
-test("DIV8", "flowC");
-</script>
« no previous file with comments | « LayoutTests/fast/regions/webkit-flow-parsing-expected.txt ('k') | LayoutTests/fast/regions/webkit-flow-renderer-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698