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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/user-timing/test_user_timing_mark_and_measure_exception_when_invoke_without_parameter.html

Issue 1979363002: Moved web-platform-tests to wpt. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/LayoutTests/imported/web-platform-tests/user-timing/test_user_timing_mark_and_measure_exception_when_invoke_without_parameter.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/user-timing/test_user_timing_mark_and_measure_exception_when_invoke_without_parameter.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/user-timing/test_user_timing_mark_and_measure_exception_when_invoke_without_parameter.html
deleted file mode 100644
index 6abfc9e8fc89f06fc3aebf992e64836c0e47d428..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/user-timing/test_user_timing_mark_and_measure_exception_when_invoke_without_parameter.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="utf-8" />
- <title>exception test of performance.mark and performance.measure</title>
- <link rel="author" title="Intel" href="http://www.intel.com/" />
- <link rel="help" href="http://www.w3.org/TR/user-timing/#extensions-performance-interface"/>
- <script src="../../../resources/testharness.js"></script>
- <script src="../../../resources/testharnessreport.js"></script>
- <script src="resources/webperftestharness.js"></script>
- <script>
- setup({explicit_done: true});
- test_namespace();
-
- function onload_test() {
- if (window.performance !== undefined && window.performance.mark !== undefined)
- {
- try
- {
- window.performance.mark();
- test_true(false, "window.performance.mark() threw an exception when invoke without a parameter.");
- }
- catch(e)
- {
- test_true(true, "window.performance.mark() threw an exception when invoke without a parameter.");
-
- test_equals(e.name,
- "TypeError",
- "window.performance.mark() threw a TYPE_ERR exception when invoke without a parameter.");
- }
- }
- else
- {
- test_true(false, "window.performance.mark() interface is not supported!");
- }
-
- if (window.performance !== undefined && window.performance.measure !== undefined)
- {
- try
- {
- window.performance.measure();
- test_true(false, "window.performance.measure() threw an exception when invoke without a parameter.");
- }
- catch(e)
- {
- test_true(true, "window.performance.measure() threw an exception when invoke without a parameter.");
-
- test_equals(e.name,
- "TypeError",
- "window.performance.measure() threw a TYPE_ERR exception when invoke without a parameter.");
- }
- }
- else
- {
- test_true(false, "window.performance.measure() interface is not supported!");
- }
-
- done();
- }
- </script>
- </head>
- <body onload="onload_test();">
- <h1>Description</h1>
- <p>This test validates exception scenarios of invoking mark() and measure() without parameter.</p>
- <div id="log"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698