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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/rendering/non-replaced-elements/lists/li-type-supported.html

Issue 1483983003: Import web-platform-tests@7dda9a13574b33d55a73e995e3d1f1fbd4da0f2b (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
(Empty)
1 <!doctype html>
2 <meta charset=utf-8>
3 <title>li@type: supported types</title>
4 <link rel=match href=li-type-supported-ref.html>
5 <li type=1>first item</li>
6 <li type=a>second item</li>
7 <li type=A>third item</li>
8 <li type=i>fourth item</li>
9 <li type=I>fifth item</li>
10 <li type=disc>sixth item</li>
11 <li type=circle>seventh item</li>
12 <li type=square>eigth item</li>
13 <li type=none>ninth item</li>
14 <ol>
15 <li type=1>first ordered item</li>
16 <li type=a>second ordered item</li>
17 <li type=A>third ordered item</li>
18 <li type=i>fourth ordered item</li>
19 <li type=I>fifth ordered item</li>
20 <li type=disc>sixth ordered item</li>
21 <li type=circle>seventh ordered item</li>
22 <li type=square>eigth ordered item</li>
23 <li type=none>ninth ordered item</li>
24 </ol>
25 <ul>
26 <li type=1>first unordered item</li>
27 <li type=a>second unordered item</li>
28 <li type=A>third unordered item</li>
29 <li type=i>fourth unordered item</li>
30 <li type=I>fifth unordered item</li>
31 <li type=disc>sixth unordered item</li>
32 <li type=circle>seventh unordered item</li>
33 <li type=square>eigth unordered item</li>
34 <li type=none>ninth unordered item</li>
35 </ul>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698