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

Unified Diff: LayoutTests/fast/js/script-tests/object-prototype-constructor.js

Issue 20867002: Remove old tests that have been migrated to the v8 repo. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove unused script-tests as well Created 7 years, 5 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/js/script-tests/object-prototype-constructor.js
diff --git a/LayoutTests/fast/js/script-tests/object-prototype-constructor.js b/LayoutTests/fast/js/script-tests/object-prototype-constructor.js
deleted file mode 100644
index 6281d8c117d7bdfd5cbe3f18beb63821ef271462..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/script-tests/object-prototype-constructor.js
+++ /dev/null
@@ -1,19 +0,0 @@
-description(
-'This is a test case for <a href="https://bugs.webkit.org/show_bug.cgi?id=3537">bug 3537</a>.'
-);
-
-var Foo = { Bar: function () {}};
-var f = new Foo.Bar();
-shouldBe("f.constructor", "Foo.Bar");
-shouldBe("typeof f.constructor", '"function"');
-
-function F() {};
-var Foo2 = { Bar: F};
-var f2 = new Foo2.Bar();
-shouldBe("f2.constructor", "Foo2.Bar");
-shouldBe("typeof f2.constructor", '"function"');
-
-var Foo3 = { Bar: new Function("")};
-var f3 = new Foo3.Bar();
-shouldBe("f3.constructor", "Foo3.Bar");
-shouldBe("typeof f3.constructor", '"function"');

Powered by Google App Engine
This is Rietveld 408576698