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

Unified Diff: LayoutTests/fast/regions/flexbox-in-region-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/flexbox-in-region-crash.html
diff --git a/LayoutTests/fast/regions/flexbox-in-region-crash.html b/LayoutTests/fast/regions/flexbox-in-region-crash.html
deleted file mode 100644
index fb247a52863ca4b57ebd26dfc3ed32c92e082233..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/flexbox-in-region-crash.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <style>
- #el1 {
- -webkit-flow-into: A;
- display: -webkit-flexbox;
- }
- #el3 {
- -webkit-flow-from: A;
- }
- </style>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- onload = function() {
- el1 = document.createElement('div')
- el1.setAttribute('id','el1')
- document.body.appendChild(el1)
-
- el2 = document.createElement('div')
- document.body.appendChild(el2)
-
- el3 = document.createElement('hr')
- el3.setAttribute('id','el3')
- el2.appendChild(el3)
-
- el4 = document.createElement('p')
- el4.setAttribute('id', 'el4')
- el5 = document.createTextNode("P1")
- el4.appendChild(el5)
- el1.appendChild(el4)
-
- setTimeout(function() {
- el1.style.display='inline'
- el4.style.visibility = 'hidden'
-
- if (window.testRunner)
- testRunner.notifyDone();
- },0)
- }
- </script>
- </head>
- <body>
- <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=77474">77474</a>: Crash in RenderFlowThread::setRegionBoxesRegionStyle</p>
- <p> This test PASSES if it does not CRASH or ASSERT.</p>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698