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

Unified Diff: LayoutTests/fast/frames/seamless/seamless-custom-font-pruning-crash.html

Issue 138443013: Remove iframe@seamless (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Include remove tests Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/frames/seamless/seamless-custom-font-pruning-crash.html
diff --git a/LayoutTests/fast/frames/seamless/seamless-custom-font-pruning-crash.html b/LayoutTests/fast/frames/seamless/seamless-custom-font-pruning-crash.html
deleted file mode 100644
index f117e7b0bacf47fe3e891895c6a41476b2495772..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/seamless/seamless-custom-font-pruning-crash.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
- This test passes if it does not crash.
- <style>@font-face {
- font-family: "Times New Roman";
- src: local("Arial")
- </style>
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
- var docElement = document.body ? document.body : document.documentElement;
-
- function initTest() {
- iframeElement = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe");
- iframeElement.setAttribute("seamless", "");
- iframeElement.setAttribute("srcdoc", "This test passes if it does not crash. <iframe seamless sandbox='allow-scripts' srcdoc='This test passes if it does not crash.'");
- docElement.appendChild(iframeElement);
-
- textElement = document.createTextNode("This test passes if it does not crash.");
- docElement.appendChild(textElement);
- setTimeout("crash()", 0);
- }
-
- document.addEventListener("DOMContentLoaded", initTest, false);
-
- function crash() {
- docElement.appendChild(iframeElement);
- if (window.testRunner)
- testRunner.notifyDone();
- }
- </script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698