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

Unified Diff: LayoutTests/fast/regions/cssom/webkit-named-flow-modified-flow.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/cssom/webkit-named-flow-modified-flow.html
diff --git a/LayoutTests/fast/regions/cssom/webkit-named-flow-modified-flow.html b/LayoutTests/fast/regions/cssom/webkit-named-flow-modified-flow.html
deleted file mode 100644
index 7f883cec39c1b361576dba90f8d5fe352882774b..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/cssom/webkit-named-flow-modified-flow.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!doctype html>
-<html>
- <!--
- Test for https://bugs.webkit.org/show_bug.cgi?id=66642 ([CSSRegions][CSSOM] Implement NamedFlow interface).
- Modify the flow name for an existing flow thread.
- Getting the webkit flow name for the previous flow returns a valid object.
- Getting the webkit flow name for the new flow returns a valid object.
- On success, you should see a PASS below.
- -->
- <head>
- <script src="../resources/helper.js"></script>
- <style>
- .pass {
- font-weight: bold;
- color: green;
- }
-
- .fail {
- font-weight: bold;
- color: red;
- }
-
- .flow {
- -webkit-flow-into: flow;
- }
-
- .flow2 {
- -webkit-flow-into: flow2;
- }
-
- .noFlow {
- -webkit-flow-into: none;
- }
- </style>
- </head>
- <body onload="test()">
- <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=66642">66642: [CSSRegions]Implement NamedFlow interface</a></p>
- <p>Getting the webkit flow name for the previous flow should return a non-null object.</p>
- <p>Getting the webkit flow name for the new flow should return a non-null object.</p>
- <p>On success, you should see PASS below.</p>
- <div id="article" class="flow"></div>
- <div id="result" class="fail">FAIL</div>
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- function test()
- {
- var namedFlow = getFlowByName("flow");
- var namedFlow2 = getFlowByName("flow2");
- if (!namedFlow && namedFlow2) {
- document.getElementById("result").innerText = "PASS";
- document.getElementById("result").className = "pass";
- }
- }
-
- document.getElementById("article").className = "flow2";
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698