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

Unified Diff: third_party/WebKit/Source/web/tests/data/pageserializer/css/css_test_page.html

Issue 1541463002: Rename [Web]PageSerializer[Test|Client|Impl] to ...FrameSerializer... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mhtml-deduplication-of-resources
Patch Set: Rebasing... Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/tests/data/pageserializer/css/css_test_page.html
diff --git a/third_party/WebKit/Source/web/tests/data/pageserializer/css/css_test_page.html b/third_party/WebKit/Source/web/tests/data/pageserializer/css/css_test_page.html
deleted file mode 100644
index c1f96f0a33b97fe9a3db748801318258cef1cdd1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/web/tests/data/pageserializer/css/css_test_page.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<!-- This page is used to test that CSS resources are retrieved correctly by
- the PageSerializer.
--->
-<html>
-<head>
-
-<link rel="stylesheet" type="text/css" href="link_styles.css" />
-<link rel="stylesheet" type="text/css" href="encoding.css" />
-
-<style>
-@import url('import_styles.css');
-
-@font-face {
- font-family: Chunkfive;
-}
-
-#chunkfiveDiv {
- font-family: Chunkfive, sans-serif;
-}
-</style>
-
-<style>
-@media not all {
- body {
- background-image: url('do_not_serialize.png');
- }
-}
-
-@supports (invalid-css-property: invalid-css-value) {
- body {
- background-image: url('do_not_serialize.png');
- }
-}
-
-#nonexistentDiv {
- background-image: url('do_not_serialize.png');
-}
-
-#divBlue {
- background-image:url('blue_background.png');
-}
-
-ul {
- list-style-image: url('ul-dot.png');
-}
-
-ol {
- list-style-image: url('ol-dot.png');
-}
-
-@media all {
- #divPink {
- background-image: url('pink_background.png');
- }
-}
-
-@supports not (invalid-css-property: invalid-css-value) {
- #divBrown {
- background-image: url('brown_background.png');
- }
-}
-
-</style>
-
-<script>
-// Dynamically creates a CSS style.
-function onLoad() {
- var styleText = "#divPurple {background-image:url('purple_background.png')}";
- var div = document.getElementById('divPurple');
- var styleNode= document.createElement('style');
- styleNode.type= 'text/css';
- styleNode.media= 'screen';
- styleNode.appendChild(document.createTextNode(styleText));
- div.appendChild(styleNode);
-}
-</script>
-</head>
-
-<body onload="onLoad()">
-
-<!-- Text using an imported font -->
-<div id='chunkfiveDiv'>This text uses the Chunkfive font.</div>
-
-<!-- Style is in linked file -->
-<div id='divRed'>
-This div has a red image as its background.
-</div>
-
-<!-- Style is in a file imported in the linked file -->
-<div id='divOrange'>
-This div has a orange image as its background.
-</div>
-
-<!-- Style is in an imported file -->
-<div id='divYellow'>
-This div has a yellow image as its background.
-</div>
-
-<!-- Style is defined in a style section in the header -->
-<div id='divBlue'>
-This div has a blue image as its background.
-</div>
-
-<!-- Style is inlined -->
-<div id='divGreen' style="background-image:url('green_background.png')">
-This div has a green image as its background.
-</div>
-
-<!-- Style id dynamically generated with JavaScript in the onload handler -->
-<div id='divPurple'>
-This div has a purple image as its background.
-</div>
-
-<!-- Style is defined in a media query -->
-<div id='divPink'>
-This div has a pink image as its background.
-</div>
-
-<!-- Style is defined in a supports feature query -->
-<div id='divBrown'>
-This div has a brown image as its background.
-</div>
-
-Unordered list:<br>
-<ul>
- <li>Blue</li>
- <li>Red</li>
- <li>Yellow</li>
- <li>Blue</li>
- <li>Green</li>
- <li>Red</li>
-</ul>
-<br>
-
-Ordered list:<br>
-<ol>
- <li>Blue</li>
- <li>Red</li>
- <li>Yellow</li>
- <li>Blue</li>
- <li>Green</li>
- <li>Red</li>
-</ol>
-
-</body>
-
-</html>

Powered by Google App Engine
This is Rietveld 408576698