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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/borders/bidi-002.html

Issue 1854503002: Add meta charset tag to unlabelled utf-8 files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop two more files unaffected by utf-8 label Created 4 years, 8 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 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st rict.dtd">
2 <html lang="en"> 2 <html lang="en">
3 <head> 3 <head><meta charset="utf-8"/>
4 <title>CSS Test: The bidi algorithm and inlines in CSS</title> 4 <title>CSS Test: The bidi algorithm and inlines in CSS</title>
5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"> 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
6 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/inline/bid i/002.html" type="text/html"> 6 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/inline/bid i/002.html" type="text/html">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#bidi-box-model"> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#bidi-box-model">
8 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction"> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#direction">
9 <link rel="help" href="http://unicode.org/reports/tr9/"> 9 <link rel="help" href="http://unicode.org/reports/tr9/">
10 <style type="text/css"> 10 <style type="text/css">
11 div p { width: 17em; border: solid; margin: 1em; padding: 0.5em; background: #FFFFCC; color: black; } 11 div p { width: 17em; border: solid; margin: 1em; padding: 0.5em; background: #FFFFCC; color: black; }
12 .test { border: solid; padding: 0.4em 1em; line-height: 3em; color: navy; } 12 .test { border: solid; padding: 0.4em 1em; line-height: 3em; color: navy; }
13 .control { line-height: 3em; color: navy; } 13 .control { line-height: 3em; color: navy; }
14 .control.a { border-style: solid none solid solid; padding: 0.4em 0 0.4em 1em ; } 14 .control.a { border-style: solid none solid solid; padding: 0.4em 0 0.4em 1em ; }
15 .control.b { border-style: solid solid solid none; padding: 0.4em 1em 0.4em 0 ; } 15 .control.b { border-style: solid solid solid none; padding: 0.4em 1em 0.4em 0 ; }
16 </style> 16 </style>
17 </head> 17 </head>
18 <body> 18 <body>
19 <p> The following two blocks should be identical, including overflow. (Force b idi: א) </p> 19 <p> The following two blocks should be identical, including overflow. (Force b idi: א) </p>
20 <div> 20 <div>
21 <p> 21 <p>
22 <span class="control a">AAABBBCCC</span>DDDEEEFFF<span class="control b">GGG HHHIII</span> 22 <span class="control a">AAABBBCCC</span>DDDEEEFFF<span class="control b">GGG HHHIII</span>
23 JJJKKKLLLMMMNNNOOO 23 JJJKKKLLLMMMNNNOOO
24 </p> 24 </p>
25 <p> 25 <p>
26 <span class="test">AAABBBCCC&#x202E;IIIHHHGGG</span>FFFEEEDDD 26 <span class="test">AAABBBCCC&#x202E;IIIHHHGGG</span>FFFEEEDDD
27 LLLKKKJJJ&#x202C;MMMNNNOOO 27 LLLKKKJJJ&#x202C;MMMNNNOOO
28 </p> 28 </p>
29 </div> 29 </div>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698