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

Side by Side Diff: LayoutTests/fast/runin/runin-continuations-crash.html

Issue 53373003: Remove display:run-in as per https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/_tHSX… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body>
3 WebKit Bug 87264 - Crash in run-ins with continuations while moving back to orig inal position.<br />
4 Test passes if it does not crash.<br />
5 <style>
6 .runIn { display: run-in; }
7 </style>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11
12 document.body.offsetTop;
13
14 runIn1 = document.createElement('div');
15 runIn1.setAttribute('class', 'runIn');
16 document.body.appendChild(runIn1);
17
18 q1 = document.createElement('q');
19 q1.style.display = 'block';
20 document.body.appendChild(q1);
21
22 span1 = document.createElement('span');
23 q1.appendChild(span1);
24
25 document.body.offsetTop;
26
27 runIn1.appendChild(document.createElement('div'));
28 span1.style.display = 'block';
29 document.body.offsetTop;
30 q1.style.display = 'none';
31 </script>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698