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

Side by Side Diff: LayoutTests/fast/ruby/ruby-block-style-not-updated-with-before-after-content.html

Issue 7833032: Merge 94543 - Style not propagated to anonymous boxes and anonymous (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
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 <html> 1 <html>
2 <body style="font: 1em/1 Ahem, sans-serif;"> 2 <body style="font: 1em/1 Ahem, sans-serif;">
3 <style> 3 <style>
4 #test::before 4 #test::before
5 { 5 {
6 content: "1234"; 6 content: "1234";
7 color: orange; 7 color: orange;
8 } 8 }
9 #test::after 9 #test::after
10 { 10 {
11 content: "4578"; 11 content: "4578";
12 color: yellow; 12 color: yellow;
13 } 13 }
14 </style> 14 </style>
15 <ruby id="test" style="display: block; color: blue"> 15 <ruby id="test" style="display: block; color: blue">
16 ABCD 16 ABCD
17 </ruby> 17 </ruby>
18 <div style="font-size: 800%; color: green"> 18 <div style="font-size: 800%; color: green">
19 EFGH 19 EFGH
20 </div> 20 </div>
21 <script> 21 <script>
22 document.body.offsetTop; 22 document.body.offsetTop;
23 var test = document.getElementById("test"); 23 var test = document.getElementById("test");
24 test.style.fontSize = "800%"; 24 test.style.fontSize = "800%";
25 </script> 25 </script>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698