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

Side by Side Diff: LayoutTests/fast/table/table-row-style-not-updated.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 4 #test
5 { 5 {
6 color: blue; 6 color: blue;
7 display: table-row; 7 display: table-row;
8 } 8 }
9 </style> 9 </style>
10 <div id="test"> 10 <div id="test">
11 ABCD 11 ABCD
12 </div> 12 </div>
13 <div style="font-size: 800%; color: green"> 13 <div style="font-size: 800%; color: green">
14 EFGH 14 EFGH
15 </div> 15 </div>
16 <script> 16 <script>
17 document.body.offsetTop; 17 document.body.offsetTop;
18 var test = document.getElementById("test"); 18 var test = document.getElementById("test");
19 test.style.fontSize = "800%"; 19 test.style.fontSize = "800%";
20 </script> 20 </script>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698