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

Unified Diff: LayoutTests/fast/profiler/constructor.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/profiler/constructor.html
diff --git a/LayoutTests/fast/profiler/constructor.html b/LayoutTests/fast/profiler/constructor.html
deleted file mode 100644
index d7e6af06ab4bb054e0bf3d35816d3ed31b8e2cb3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/profiler/constructor.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<html>
-<head>
-<script src="resources/profiler-test-JS-resources.js"></script>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-if (window.internals)
- internals.setJavaScriptProfilingEnabled(true);
-
-function startTest()
-{
- console.profile("Using a constructor.");
-
- var myObject = new fakeObject(1, 2);
-
- endTest();
-}
-
-function fakeObject (x, y)
-{
- var myArray = new Array()
- myArray[0] = 5;
-}
-</script>
-</head>
-
-<body onload="startTest()">
-This page's JavaScript has a call to new() in it.
-<br>
-<br>
-To run this test manually, load it in the browser then load the WebInspector and look at
-the profile. In the profile there should be a call to fakeObject() and Array()
-in it.
-<div id="output"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698