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

Side by Side Diff: LayoutTests/fast/runin/001.html

Issue 53373003: Remove display:run-in as per https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/_tHSX… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test Created 7 years, 1 month 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
(Empty)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html401/strict.dtd">
3 <html>
4 <head>
5 <title>Test</title>
6
7 <style type="text/css">
8 .block { display: block }
9 .runin { display: run-in }
10 .inline { display: inline }
11
12 </style>
13 </head>
14
15 <body>
16 Case A:
17
18 <div class="block">
19 <div class="runin">This should NOT</div>
20 <div class="inline">run in.</div>
21 </div>
22
23 Case B:
24
25 <div class="block">
26 <div class="runin">This should NOT</div>
27 run in.
28 </div>
29
30 Case C:
31
32 <div class="block">
33 <div class="runin">This should </div>
34 <div class="block">run in.</div>
35 </div>
36
37 Case D:
38
39 <div class="block">
40 <div class="runin">This should NOT</div>
41 <div class="runin">run in.</div>
42 </div>
43
44 </body>
45 </html>
46
OLDNEW
« no previous file with comments | « LayoutTests/fast/regions/script-tests/region-element-display-restriction.js ('k') | LayoutTests/fast/runin/001-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698