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

Side by Side Diff: LayoutTests/fast/css-generated-content/first-letter-in-nested-before-table.html

Issue 8229001: Merge 97124 - Style not updated on text fragment in :first-letter nested in :before table. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/fast/css-generated-content/first-letter-in-nested-before-table-expected.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- No text in black, B and F should be blue. --> 2 <!-- No text in black, B and F should be blue. -->
3 <html> 3 <html>
4 <body style="font-family: ahem; font-size: 50px; -webkit-font-smoothing: none;"> 4 <body style="font-family: ahem; font-size: 50px; -webkit-font-smoothing: none;">
5 <style> 5 <style>
6 .test1:before { 6 .test1:before {
7 display: table; 7 display: table;
8 content: "AB"; 8 content: "AB";
9 } 9 }
10 .test2:after { 10 .test2:after {
11 display: table; 11 display: table;
12 content: "EF"; 12 content: "EF";
13 } 13 }
14 .test1:first-letter { color: green; } 14 .test1:first-letter { color: green; }
15 .test2:first-letter { color: green; } 15 .test2:first-letter { color: green; }
16 </style> 16 </style>
17 <div class="test1">C</div> 17 <div class="test1">C</div>
18 <div class="test2">D</div> 18 <div class="test2">D</div>
19 <div class="test2"></div> 19 <div class="test2"></div>
20 <script> 20 <script>
21 document.body.offsetTop; 21 document.body.offsetTop;
22 document.body.style.color = "blue"; 22 document.body.style.color = "blue";
23 </script> 23 </script>
24 </html> 24 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-generated-content/first-letter-in-nested-before-table-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698