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

Side by Side Diff: LayoutTests/fast/ruby/rubyDOM-remove-rt-block-2.html

Issue 554075: Merge 53525 - Bug 33266 WebCore::InlineFlowBox::determineSpacingForFlowBoxes... (Closed) Base URL: svn://chrome-svn/chrome/branches/WebKit/249s/
Patch Set: Created 10 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <script>
5 function test()
6 {
7 if (window.layoutTestController)
8 layoutTestController.dumpAsText();
9 document.getElementById("result").firstChild.data = 'SUCCESS!';
10
11 var ruby = document.getElementById('R');
12 var rt = document.getElementById('RT');
13 ruby.removeChild(rt);
14 }
15 </script>
16 </head>
17 <!-- Removing a <rt> element, causing a merge of block flow and inline flow -->
18 <!-- As this is a malformed example we don't care about the exact rendering outp ut, only that it doesn't crash -->
19 <body onload="test()">
20 <div id="result">FAILED!</p>
21 <br>
22 <br>
23 <ruby id="R">text <div>block</div> <rt id="RT">ruby text 1</rt><span>more</span> text<rt>ruby text 2</rt></ruby>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698