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

Side by Side Diff: third_party/WebKit/LayoutTests/html/document-metadata/link-rel-stylesheet.html

Issue 2780363002: Rename subdirectory names in LayoutTests/html/. (Closed)
Patch Set: Created 3 years, 8 months 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 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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698