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

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: Rebased patch 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 <style>
Julien - ping for review 2013/07/23 21:40:12 The test is missing a DOCTYPE (or do we *really* n
2 .inlineBlock { display: inline-block; }
3 .runin { display: run-in; }
4 </style>
5 <script>
6 if (window.testRunner)
7 testRunner.dumpAsText();
8 var figure;
9 var fieldSet;
Julien - ping for review 2013/07/23 21:40:12 We don't need to define these variables here as yo
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 <div>
22 PASS if test does not crash.
Julien - ping for review 2013/07/23 21:40:12 Instructions should be complete English sentences:
23 </div>
24
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