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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/body-onerror-runtime-error.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (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/html/webappapis/scripting/processing-model-2/body-onerror-runtime-error.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/body-onerror-runtime-error.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/body-onerror-runtime-error.html
deleted file mode 100644
index fb7ea5839fe97a89c964612e219d2bb62c6a9a24..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/webappapis/scripting/processing-model-2/body-onerror-runtime-error.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <title>&lt;body onerror> - runtime error in &lt;script></title>
- <script src="../../../../../../resources/testharness.js"></script>
- <script src="../../../../../../resources/testharnessreport.js"></script>
- </head>
- <script>
- setup({allow_uncaught_exception:true});
- var t = async_test();
- var t_col = async_test(document.title+' (column)');
- var ran = false;
- </script>
- <body onerror="
- t.step(function(){
- ran = true;
- assert_equals(typeof event, 'string', 'first arg');
- assert_equals(source, location.href, 'second arg');
- assert_equals(typeof lineno, 'number', 'third arg');
- });
- t_col.step(function(){
- assert_equals(typeof column, 'number', 'fourth arg');
- });
- ">
- <div id=log></div>
- <script>
- undefined_variable;
- </script>
- <script>
- t.step(function(){
- assert_true(ran, 'ran');
- t.done();
- });
- t_col.step(function(){
- t_col.done();
- });
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698