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

Unified Diff: Source/web/tests/data/pageserializer/blank_frames.html

Issue 68613003: Merges the two different page serializers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove newline after XML decl Created 7 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: Source/web/tests/data/pageserializer/blank_frames.html
diff --git a/Source/web/tests/data/pageserializer/blank_frames.html b/Source/web/tests/data/pageserializer/blank_frames.html
deleted file mode 100644
index 6dfb20499c43263cb5c246fe7e1925442cd71436..0000000000000000000000000000000000000000
--- a/Source/web/tests/data/pageserializer/blank_frames.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-
-<script>
- function onload() {
- var frame = document.createElement("iframe");
- var div = document.getElementById("myDiv1");
- div.appendChild(frame);
-
- frame.contentDocument.body.innerHTML +=
- "Some text<br>An image <img src='blue_background.png'.><br><b>Some more text</b>"
-
- frame = document.createElement("iframe");
- div = document.getElementById("myDiv2");
- div.appendChild(frame);
-
- frame.contentDocument.body.innerHTML +=
- "Some text<br>An image <img src='red_background.png'.><br><b>Some more text</b>"
-
- frame = document.createElement("iframe");
- div = document.getElementById("myDiv3");
- div.appendChild(frame);
-
- frame.contentDocument.body.innerHTML +=
- "Some text<br>An image <img src='orange_background.png'.><br><b>Some more text</b>"
-
- }
-
-</script>
-
-<body onload="onload()">
- This page creates empty iframes and adds content to them dynamically.<br><br>
- <div id="myDiv1"></div>
- <div id="myDiv2"></div>
- <div id="myDiv3"></div>
-</body>
-
-</html>
« no previous file with comments | « Source/web/tests/data/pageserialization/top_frame.html ('k') | Source/web/tests/data/pageserializer/blue_background.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698