OLD | NEW |
1 Test to make sure WebKit adds style to the appropriate container. | 1 Test to make sure WebKit adds style to the appropriate container. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 styleWithCSS = false | 6 styleWithCSS = false |
7 PASS fontSize(3) on all of "<font size="3">hello <font size="4">world</font></fo
nt>" yields "<font size="3">hello world</font>" | 7 PASS fontSize(3) on all of "<font size="3">hello <font size="4">world</font></fo
nt>" yields "<font size="3">hello world</font>" |
8 PASS fontSize(4) on all of "<font face="Arial">hello</font>" yields "<font face=
"Arial" size="4">hello</font>" | 8 PASS fontSize(4) on all of "<font face="Arial">hello</font>" yields "<font face=
"Arial" size="4">hello</font>" |
9 PASS fontSize(4) on all of "<font color="blue"><font face="Arial">hello</font></
font>" yields "<font color="blue"><font face="Arial" size="4">hello</font></font
>" | 9 PASS fontSize(4) on all of "<font color="blue"><font face="Arial">hello</font></
font>" yields "<font color="blue"><font face="Arial" size="4">hello</font></font
>" |
10 PASS fontSize(4) on all of "<b><font face="Arial">hello</font></b>" yields "<b><
font face="Arial" size="4">hello</font></b>" | 10 PASS fontSize(4) on all of "<b><font face="Arial">hello</font></b>" yields "<b><
font face="Arial" size="4">hello</font></b>" |
(...skipping 11 matching lines...) Expand all Loading... |
22 PASS strikeThrough(null) on all of "<i>hello</i> <b><strike>world</strike></b> W
ebKit" yields "<strike><i>hello</i> <b>world</b> WebKit</strike>" | 22 PASS strikeThrough(null) on all of "<i>hello</i> <b><strike>world</strike></b> W
ebKit" yields "<strike><i>hello</i> <b>world</b> WebKit</strike>" |
23 PASS strikeThrough(null) on all of "<b><i>hello <strike>world</strike></i> WebKi
t</b>" yields "<b><strike><i>hello world</i> WebKit</strike></b>" | 23 PASS strikeThrough(null) on all of "<b><i>hello <strike>world</strike></i> WebKi
t</b>" yields "<b><strike><i>hello world</i> WebKit</strike></b>" |
24 | 24 |
25 styleWithCSS = true | 25 styleWithCSS = true |
26 PASS fontSize(4) on all of "<font face="Arial">hello</font>" yields "<font face=
"Arial" style="font-size: large;">hello</font>" | 26 PASS fontSize(4) on all of "<font face="Arial">hello</font>" yields "<font face=
"Arial" style="font-size: large;">hello</font>" |
27 PASS fontSize(4) on all of "<font face="Arial"><b>hello</b></font>" yields "<fon
t face="Arial"><b style="font-size: large;">hello</b></font>" | 27 PASS fontSize(4) on all of "<font face="Arial"><b>hello</b></font>" yields "<fon
t face="Arial"><b style="font-size: large;">hello</b></font>" |
28 PASS fontSize(4) on all of "<i><b>hello</b></i>" yields "<i><b style="font-size:
large;">hello</b></i>" | 28 PASS fontSize(4) on all of "<i><b>hello</b></i>" yields "<i><b style="font-size:
large;">hello</b></i>" |
29 PASS fontSize(4) on all of "<i><b>hello</b> world</i>" yields "<i style="font-si
ze: large;"><b>hello</b> world</i>" | 29 PASS fontSize(4) on all of "<i><b>hello</b> world</i>" yields "<i style="font-si
ze: large;"><b>hello</b> world</i>" |
30 PASS fontSize(4) on all of "<font color="blue"><b>hello</b></font>" yields "<fon
t color="blue"><b style="font-size: large;">hello</b></font>" | 30 PASS fontSize(4) on all of "<font color="blue"><b>hello</b></font>" yields "<fon
t color="blue"><b style="font-size: large;">hello</b></font>" |
31 PASS bold(null) on all of "<span style="font-style: italic;">hello</span>" yield
s "<span style="font-style: italic; font-weight: bold;">hello</span>" | 31 PASS bold(null) on all of "<span style="font-style: italic;">hello</span>" yield
s "<span style="font-style: italic; font-weight: bold;">hello</span>" |
32 PASS underline(null) on all of "<span style="font-style: italic;"><b>hello</b></
span>" yields "<span style="font-style: italic; text-decoration: underline;"><b>
hello</b></span>" | 32 PASS underline(null) on all of "<span style="font-style: italic;"><b>hello</b></
span>" yields "<span style="font-style: italic; text-decoration-line: underline;
"><b>hello</b></span>" |
33 PASS underline(null) on all of "<span style="color: blue;"><i><span style="font-
size: large;"><b>hello</b> world</span></i></span>" yields "<span style="color:
blue;"><i><span style="font-size: large; text-decoration: underline;"><b>hello</
b> world</span></i></span>" | 33 PASS underline(null) on all of "<span style="color: blue;"><i><span style="font-
size: large;"><b>hello</b> world</span></i></span>" yields "<span style="color:
blue;"><i><span style="font-size: large; text-decoration-line: underline;"><b>he
llo</b> world</span></i></span>" |
34 PASS successfullyParsed is true | 34 PASS successfullyParsed is true |
35 | 35 |
36 TEST COMPLETE | 36 TEST COMPLETE |
37 | 37 |
OLD | NEW |