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

Side by Side Diff: LayoutTests/fast/text/international/unicode-bidi-isolate-block-elements.html

Issue 1237143003: bdo (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 5 years, 5 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 | Source/core/css/html.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html><head>
3 <title>block-as-inline</title>
4 <style>
5 .inline {display: inline;}
6 .inline-block {display: inline-block;}
7 </style>
8 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9 </head><body>
10 <div>
11 I like:
12 <div class="inline">A</div>
13 <address class="inline">&#x05D0;</address>
14 <div class="inline">&#x05D1;</div>
15 (3 things total).
16 </div>
17 <div>
18 Address :
19 <address class="inline">A</address>
20 <div class="inline">&#x05D0;</div>
21 <address class="inline">&#x05D1;</address>
22 (3 things total)
23 </div>
24 <div>
25 Center :
26 <center class="inline">A</center>
27 <center class="inline">&#x05D0;</center>
28 <center class="inline">&#x05D1;</center>
29 (3 things total)
30 </div>
31 <div>
32 Figure :
33 <figure class="inline">
34 <p class="inline">A</p>
35 <figcaption class="inline">&#x05D0;</figcaption>
36 <blockquote class="inline">&#x05D1;</blockquote>
37 </figure>
38 (3 things total)
39 </div>
40 <h1>
41 Header :
42 <hgroup class="inline">
43 <h2 class="inline">A</h2>
44 <h3 class="inline">B</h3>
45 <h4 class="inline">&#x05D0;</h4>
46 <h5 class="inline">&#x05D1;</h5>
47 <h6 class="inline">&#x05D2;</h6>
48 (5 things total)
49 <hgroup>
50 </h1>
51 <table>
52 Table :
53 <thead class="inline">
54 Head :
55 <tr class="inline">
56 row
57 <th class="inline">&#x05D0;</th>
58 <th class="inline">&#x05D1;</th>
59 </tr>
60 (3 things total)
61 </thead>
62 </table>
63 <table>
64 <tfoot class="inline">
65 Foot :
66 <tr class="inline">
67 row
68 <td class="inline">&#x05D0;</td>
69 <td class="inline">&#x05D1;</td>
70 </tr>
71 (3 things total)
72 </tfoot>
73 </table>
74 <table>
75 <tbody class="inline">
76 Body :
77 <tr class="inline">
78 row
79 <td class="inline">&#x05D0;</td>
80 <td class="inline">&#x05D1;</td>
81 </tr>
82 (3 things total)
83 </tbody>
84 </table>
85 <dl>
86 list :
87 <dt class="inline">A</dt>
88 <dd class="inline">&#x05D0;</dd>
89 <dt class="inline">B</dt>
90 <dd class="inline">&#x05D1;</dd>
91 (4 things total)
92 </dl>
93 <ol>
94 One ordered :
95 <li class="inline">A</li>
96 <li class="inline">&#x05D0;</li>
97 <li class="inline">&#x05D1;</li>
98 (3 things total)
99 </ol>
100 <ul>
101 One unordered :
102 <li class="inline">A</li>
103 <li class="inline">&#x05D0;</li>
104 <li class="inline">&#x05D1;</li>
105 (3 things total)
106 </ul>
107 <div>
108 I like:
109 <div class="inline-block">A</div>
110 <div class="inline-block">&#x05D0;</div>
111 <div class="inline-block">&#x05D1;</div>
112 (3 things total).
113 </div>
114 <p>
115 <summary class="inline">A</summary>
116 <p class="inline">B</p>
117 <pre class="inline">content &#x05D1;</pre>
118 (7 Lorem)
119 <p>
120 <div>
121 I like:
122 <div class="inline">A</div>
123 <div class="inline" dir="rtl">&#x05D0;</div>
124 <div class="inline" dir="rtl">&#x05D1;</div>
125 (3 things total).
126 </div>
127 <div>
128 I like:
129 <div class="inline-block">A</div>
130 <div class="inline-block" dir="rtl">&#x05D0;</div>
131 <div class="inline-block" dir="rtl">&#x05D1;</div>
132 (3 things total).
133 </div>
134 </body></html>
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/html.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698