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

Side by Side Diff: LayoutTests/fast/ruby/ruby-inline-style-not-updated.html

Issue 8017007: Merge 94582 - Style not propagated to anonymous boxes and anonymous (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 3 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
1 <!-- The blue and green text boxes should not overlap -->
1 <html> 2 <html>
2 <body style="font: 1em/1 Ahem, sans-serif;"> 3 <body style="font: 1em/1 Ahem, sans-serif;">
3 <ruby id="test" style="color: blue"> 4 <ruby id="test" style="color: blue">
4 ABCD 5 ABCD
5 </ruby> 6 </ruby>
6 <div style="font-size: 800%; color: green"> 7 <div style="font-size: 800%; color: green">
7 EFGH 8 EFGH
8 </div> 9 </div>
9 <script> 10 <script>
10 document.body.offsetTop; 11 document.body.offsetTop;
11 var test = document.getElementById("test"); 12 var test = document.getElementById("test");
12 test.style.fontSize = "800%"; 13 test.style.fontSize = "800%";
13 </script> 14 </script>
14 </body> 15 </body>
15 </html> 16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698