 Chromium Code Reviews
 Chromium Code Reviews Issue 8043034:
  Merge 95857 - Source/WebCore: Style not updated for :before, :after content  (Closed) 
  Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
    
  
    Issue 8043034:
  Merge 95857 - Source/WebCore: Style not updated for :before, :after content  (Closed) 
  Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/| OLD | NEW | 
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> | 
| 2 <!-- There should no text in black color. --> | 2 <!-- There should no text in black color. --> | 
| 3 <html> | 3 <html> | 
| 4 <body> | 4 <body> | 
| 5 <style> | 5 <style> | 
| 6 rt:before | 6 rt:before | 
| 7 { | 7 { | 
| 8 content: "BEFORE"; | 8 content: "BEFORE"; | 
| 9 } | 9 } | 
| 10 rt:after | 10 rt:after | 
| 11 { | 11 { | 
| 12 content: "AFTER"; | 12 content: "AFTER"; | 
| 13 } | 13 } | 
| 14 </style> | 14 </style> | 
| 15 <ruby> | 15 <ruby> | 
| 16 A<rt>CONTENT</rt>B | 16 A<rt>CONTENT</rt>B | 
| 17 </ruby> | 17 </ruby> | 
| 18 <script> | 18 <script> | 
| 19 document.body.offsetTop; | 19 document.body.offsetTop; | 
| 20 document.body.style.color = 'blue'; | 20 document.body.style.color = 'blue'; | 
| 21 document.body.style.zoom = '200%'; | 21 document.body.style.zoom = '200%'; | 
| 22 </script> | 22 </script> | 
| 23 </body> | 23 </body> | 
| 24 </html> | 24 </html> | 
| OLD | NEW |