repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
lists
/
ol-start-parsing.html
blob
bf7278a1a648eeb620681caa13a3f6c4598c1b9e
1
No start attribute.
2
<ol>
3
<li>
Should be
1
</li>
4
<li>
Should be
2
</li>
5
</ol>
6
<hr>
7
8
start
9
<ol
start
>
10
<li>
Should be
1
</li>
11
<li>
Should be
2
</li>
12
</ol>
13
<hr>
14
15
start
=
""
16
<ol
start
=
""
>
17
<li>
Should be
1
</li>
18
<li>
Should be
2
</li>
19
</ol>
20
<hr>
21
22
start
=
" 2 "
23
<ol
start
=
" 2 "
>
24
<li>
Should be
2
</li>
25
<li>
Should be
3
</li>
26
</ol>
27
<hr>
28
29
start
=
"+2"
30
<ol
start
=
"+2"
>
31
<li>
Should be
2
</li>
32
<li>
Should be
3
</li>
33
</ol>
34
<hr>
35
36
start
=
"A2"
37
<ol
start
=
"A2"
>
38
<li>
Should be
1
</li>
39
<li>
Should be
2
</li>
40
</ol>
41
<hr>
42
43
start
=
".2"
44
<ol
start
=
".2"
>
45
<li>
Should be
1
</li>
46
<li>
Should be
2
</li>
47
</ol>
48
<hr>
49
50
start
=
"#2"
51
<ol
start
=
"#2"
>
52
<li>
Should be
1
</li>
53
<li>
Should be
2
</li>
54
</ol>
55
56
start
=
"0"
57
<ol
start
=
"0"
>
58
<li>
Should be
0
</li>
59
<li>
Should be
1
</li>
60
</ol>
61
<hr>
62
63
start
=
" 0 "
64
<ol
start
=
" 0 "
>
65
<li>
Should be
0
</li>
66
<li>
Should be
1
</li>
67
</ol>
68
<hr>
69
70
start
=
"2"
71
<ol
start
=
"2"
>
72
<li>
Should be
2
</li>
73
<li>
Should be
3
</li>
74
</ol>
75
<hr>
76
77
start
=
"-2"
78
<ol
start
=
"-2"
>
79
<li>
Should be -
2
</li>
80
<li>
Should be -
1
</li>
81
</ol>
82
<hr>