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

Side by Side Diff: LayoutTests/fast/regions/select-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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <style>
5 #el1 { -webkit-flow-into: A; }
6 #el3 { -webkit-flow-from: A; }
7 </style>
8 <script>
9 if (window.testRunner) {
10 testRunner.dumpAsText();
11 testRunner.waitUntilDone();
12 }
13
14 onload = function() {
15 el1=document.createElement('div')
16 el1.setAttribute('id','el1')
17 document.body.appendChild(el1)
18
19 el2=document.createElement('div')
20 document.body.appendChild(el2)
21
22 el3=document.createElement('hr')
23 el3.setAttribute('id','el3')
24 el2.appendChild(el3)
25
26 el4=document.createElement('select')
27 el1.appendChild(el4)
28 el4.style.display='block'
29
30 setTimeout(function() {
31 el4.style.display='inline'
32 el4.style.visibility = 'hidden'
33
34 if (window.testRunner)
35 testRunner.notifyDone();
36 },0)
37 }
38 </script>
39 </head>
40 <body>
41 <p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=77474">77474</a >: Crash in RenderFlowThread::setRegionBoxesRegionStyle</p>
42 <p> This test PASSES if it does not CRASH or ASSERT.</p>
43 </body>
44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698