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

Unified Diff: webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence.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/Window/window-lookup-precedence.html
===================================================================
--- webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence.html (revision 12664)
+++ webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence.html (working copy)
@@ -1,47 +0,0 @@
-<html>
-<script type="text/javascript" src="resources/window-properties.js"></script>
-
-<script>
-if (window.layoutTestController) {
- layoutTestController.dumpAsText();
- layoutTestController.waitUntilDone();
-}
-
-var win = window.window;
-var doc = window.document;
-
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-function check(name) {
- var subframe = win.frames[0];
- subframe.name = name;
- var out = doc.getElementById("console");
- var v = win[name];
- if (typeof v == 'number') {
- v = 'Number'; // cannonicalize numbers.
- } else if (/window-lookup-precedence.html/.test(v)) {
- v = 'Location'; // cannonicalize current location.
- }
- out.innerHTML = out.innerHTML + "window."+name + " IS " + v + "<br>";
-
-}
-
-function runTest() {
- for (var i = 0; i < properties.length; i++) {
- check(properties[i]);
- }
-
- if (window.layoutTestController)
- layoutTestController.notifyDone();
-}
-</script>
-
-<body onload="runTest()">
-<iframe src="about:blank"></iframe>
-
-<div id="console"></div>
-
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698