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

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

Issue 55025: Remove tests that have been upstreamed. Update test_expectations list... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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 12664)
+++ webkit/data/layout_tests/chrome/fast/dom/wrapper-context.html (working copy)
@@ -1,31 +0,0 @@
-<html>
-<body>
-Tests that node wrappers are created in the context to which they belong.
-You should see PASS below.
-<br>
-<div id="output"></div>
-<iframe id="inner" src="resources/wrapper-context-inner.html"></iframe>
-<script>
-if (window.layoutTestController) {
- layoutTestController.dumpAsText();
- layoutTestController.waitUntilDone();
-}
-
-function writeOutput(s) {
- var paragraph = document.createElement("p");
- paragraph.innerHTML = s;
- document.getElementById("output").appendChild(paragraph);
-}
-
-// Used to create the document wrapper.
-var innerDocument;
-
-// Once the inner frame has loaded, run the test.
-function innerHasLoaded() {
- writeOutput("Running...");
- innerDocument = inner.document;
- inner.runTest();
-}
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698