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

Side by Side Diff: LayoutTests/fast/text/setData-dirty-lines.html

Issue 291853004: Update Ahem capitalization in LayoutTests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <head> 1 <head>
2 <style> 2 <style>
3 div { width: 200px; font-family: ahem; font-size: 40px; position: absolu te; top: 0; left: 0; -webkit-font-smoothing: none; } 3 div { width: 200px; font-family: Ahem; font-size: 40px; position: absolu te; top: 0; left: 0; -webkit-font-smoothing: none; }
4 </style> 4 </style>
5 </head> 5 </head>
6 <body style="position: relative;"> 6 <body style="position: relative;">
7 <!-- There should be no red on the page. --> 7 <!-- There should be no red on the page. -->
8 <div style="color: red;">.AAAA B CC D <!-- -->E</div> 8 <div style="color: red;">.AAAA B CC D <!-- -->E</div>
9 <div id="target" style="color: green;">AAAA B CC D <!-- -->E</div> 9 <div id="target" style="color: green;">AAAA B CC D <!-- -->E</div>
10 <script> 10 <script>
11 var target = document.getElementById("target"); 11 var target = document.getElementById("target");
12 target.removeChild(target.childNodes[1]); 12 target.removeChild(target.childNodes[1]);
13 target.offsetTop; 13 target.offsetTop;
14 target.normalize(); 14 target.normalize();
15 target.firstChild.data = "." + target.firstChild.data; 15 target.firstChild.data = "." + target.firstChild.data;
16 </script> 16 </script>
17 </body> 17 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fast/text/remove-zero-length-run.html ('k') | LayoutTests/fast/text/shadow-translucent-fill.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698