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

Unified Diff: webkit/data/layout_tests/chrome/fast/dom/wrapper-context.html

Issue 18651: Fix the regression in Yahoo! Mail... (Closed) Base URL: svn://chrome-svn/chrome/branches/release_154.next/src/
Patch Set: Created 11 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: webkit/data/layout_tests/chrome/fast/dom/wrapper-context.html
===================================================================
--- webkit/data/layout_tests/chrome/fast/dom/wrapper-context.html (revision 8360)
+++ webkit/data/layout_tests/chrome/fast/dom/wrapper-context.html (working copy)
@@ -1,33 +0,0 @@
-<html>
-<body onload="AccessInnerDocument()">
-<div id="output"></div>
-<iframe id="inner" src="resources/wrapper-context-inner.html"></iframe>
-<script>
-if (window.layoutTestController) {
- layoutTestController.waitUntilDone();
- layoutTestController.dumpAsText();
-}
-
-// Write to the output div.
-function WriteOutput(s) {
- var paragraph = document.createElement("p");
- paragraph.innerHTML = s;
- document.getElementById("output").appendChild(paragraph);
-}
-
-// Used from the inner frame to know when this frame has accessed
-// the document of the inner frame.
-var innerDocument;
-
-// Once the inner frame has loaded, access it's document and assign
-// the wrapper to innerDocument.
-function AccessInnerDocument() {
- if (inner.loaded) {
- innerDocument = inner.document;
- } else {
- setTimeout(AccessInnerDocument, 100);
- }
-}
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698