| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>Test for importing styles via incorrect link element</title> | |
| 5 <link type="text/css" href="data:text/css;charset=utf-8,p#one%20%7Bbackground-co
lor%3A%20red%3B%7D%0D%0A"/> | |
| 6 <link rel="stylesheet" href="data:text/css;charset=utf-8,p#two%20%7Bbackground-c
olor%3A%20lime%3B%7D%0D%0A"/> | |
| 7 <link href="data:text/css;charset=utf-8,p#three%20%7Bbackground-color%3A%20red%3
B%7D%0D%0A"/> | |
| 8 <link type="text/css" rel="stylesheet" href="data:text/css;charset=utf-8,p#four%
20%7Bbackground-color%3A%20lime%3B%7D%0D%0A"/> | |
| 9 </head> | |
| 10 <body> | |
| 11 <p id="one">This line should not have red background</p> | |
| 12 <p id="two">This line should have lime background</p> | |
| 13 <p id="three">This line should not have red background</p> | |
| 14 <p id="four">This line should have lime background</p> | |
| 15 </body> | |
| 16 </html> | |
| OLD | NEW |