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

Side by Side Diff: LayoutTests/fast/runin/run-in-sibling-inline-block.html

Issue 19290002: Move runin to original position when sibling element is destroyed. Additionally, if If moveRunInUnd… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 7 years, 5 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
« no previous file with comments | « no previous file | LayoutTests/fast/runin/run-in-sibling-inline-block-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <style>
4 .inlineBlock { display: inline-block; }
5 .runin { display: run-in; }
6 </style>
7 <script>
8 if (window.testRunner)
9 testRunner.dumpAsText();
10 function boom() {
11 figure = document.createElement('figure');
12 figure.setAttribute('class', 'runin');
13 document.documentElement.appendChild(figure);
14 fieldSet = document.createElement('fieldset');
15 document.documentElement.appendChild(fieldSet);
16 document.body.offsetTop;
17 fieldSet.setAttribute('class', 'inlineBlock');
18 }
19 window.onload = boom;
20 </script>
21 <body>
22 <div>
23 This test has PASSED if it did not crash.
24 </div>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/runin/run-in-sibling-inline-block-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698