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

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

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 <?xml version="1.0" encoding="UTF-8"?>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>li@type: supported types</title>
5 <link rel="match" href="li-type-supported-ref.html"/>
6 </head>
7 <body>
8 <li type="1">first item</li>
9 <li type="a">second item</li>
10 <li type="A">third item</li>
11 <li type="i">fourth item</li>
12 <li type="I">fifth item</li>
13 <li type="disc">sixth item</li>
14 <li type="circle">seventh item</li>
15 <li type="square">eigth item</li>
16 <li type="none">ninth item</li>
17 <ol>
18 <li type="1">first ordered item</li>
19 <li type="a">second ordered item</li>
20 <li type="A">third ordered item</li>
21 <li type="i">fourth ordered item</li>
22 <li type="I">fifth ordered item</li>
23 <li type="disc">sixth ordered item</li>
24 <li type="circle">seventh ordered item</li>
25 <li type="square">eigth ordered item</li>
26 <li type="none">ninth ordered item</li>
27 </ol>
28 <ul>
29 <li type="1">first unordered item</li>
30 <li type="a">second unordered item</li>
31 <li type="A">third unordered item</li>
32 <li type="i">fourth unordered item</li>
33 <li type="I">fifth unordered item</li>
34 <li type="disc">sixth unordered item</li>
35 <li type="circle">seventh unordered item</li>
36 <li type="square">eigth unordered item</li>
37 <li type="none">ninth unordered item</li>
38 </ul>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698