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

Side by Side Diff: Source/WebKit/chromium/tests/data/pageserializer/css_test_page.html

Issue 16831015: fix mocking of various files in webkit_unit_tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: wtf instead of std Created 7 years, 6 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
« no previous file with comments | « Source/WebKit/chromium/tests/data/pageserialization/beautifull.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 2
3 <!-- This page is used to test that CSS resources are retrieved correctly by the 3 <!-- This page is used to test that CSS resources are retrieved correctly by the
4 WebPageSerializer::generateSnapshot method 4 WebPageSerializer::generateSnapshot method
5 --> 5 -->
6 6
7 <head> 7 <head>
8 8
9 <link rel="stylesheet" type="text/css" href="link_styles.css" /> 9 <link rel="stylesheet" type="text/css" href="link_styles.css" />
10 10
11 <style> 11 <style>
12 @import url('import_styles.css'); 12 @import url('import_styles.css');
13 13
14 @font-face { 14 @font-face {
15 font-family: Chunkfive; 15 font-family: Chunkfive;
16 src: url('Chunkfive.otf');
17 src: url('Chunkfive-webfont.eot) format('eot');
18 } 16 }
19 17
20 #chunkfiveDiv { 18 #chunkfiveDiv {
21 font-family: Chunkfive, sans-serif; 19 font-family: Chunkfive, sans-serif;
22 } 20 }
23 </style> 21 </style>
24 22
25 <style> 23 <style>
26 #divBlue { 24 #divBlue {
27 background-image:url('blue_background.png'); 25 background-image:url('blue_background.png');
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 <li>Red</li> 101 <li>Red</li>
104 <li>Yellow</li> 102 <li>Yellow</li>
105 <li>Blue</li> 103 <li>Blue</li>
106 <li>Green</li> 104 <li>Green</li>
107 <li>Red</li> 105 <li>Red</li>
108 </ol> 106 </ol>
109 107
110 </body> 108 </body>
111 109
112 </html> 110 </html>
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/tests/data/pageserialization/beautifull.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698