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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/worklet/animation-worklet-import.html

Issue 2171973002: [WIP][worklets] ThreadedWorkletGlobalScope + AnimationWorkletGlobalScope Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ...... Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../resources/testharness.js"></script> 4 <script src="../resources/testharness.js"></script>
5 <script src="../resources/testharnessreport.js"></script> 5 <script src="../resources/testharnessreport.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 promise_test(function() { 9 promise_test(function() {
10 10
11 return paintWorklet.import('resources/empty-worklet-script.js').then(fun ction(undefined_arg) { 11 return animationWorklet.import('resources/empty-worklet-script.js').then (function(undefined_arg) {
12 assert_equals(undefined_arg, undefined, 'Promise should resolve with no arguments.'); 12 assert_equals(undefined_arg, undefined, 'Promise should resolve with no arguments.');
13 }).catch(function(error) { 13 }).catch(function(error) {
14 assert_unreached('unexpected rejection: ' + error); 14 assert_unreached('unexpected rejection: ' + error);
15 }); 15 });
16 16
17 }, 'Importing a script resolves the given promise.'); 17 }, 'Importing a script resolves the given promise.');
18 18
19 promise_test(function() { 19 promise_test(function() {
20 20
21 return paintWorklet.import('resources/throwing-worklet-script.js').then( function(undefined_arg) { 21 return animationWorklet.import('resources/throwing-worklet-script.js').t hen(function(undefined_arg) {
22 assert_equals(undefined_arg, undefined, 'Promise should resolve with no arguments.'); 22 assert_equals(undefined_arg, undefined, 'Promise should resolve with no arguments.');
23 }).catch(function(error) { 23 }).catch(function(error) {
24 assert_unreached('unexpected rejection: ' + error); 24 assert_unreached('unexpected rejection: ' + error);
25 }); 25 });
26 26
27 }, 'Importing a script which throws should still resolve the given promise.' ); 27 }, 'Importing a script which throws should still resolve the given promise.' );
28 28
29 promise_test(function() { 29 promise_test(function() {
30 30
31 return paintWorklet.import('non-existant-worklet-script.js').then(functi on() { 31 return animationWorklet.import('non-existant-worklet-script.js').then(fu nction() {
32 assert_unreached('import should fail.'); 32 assert_unreached('import should fail.');
33 }).catch(function(error) { 33 }).catch(function(error) {
34 assert_equals(error.name, 'NetworkError', 'error should be a Network Error.'); 34 assert_equals(error.name, 'NetworkError', 'error should be a Network Error.');
35 }); 35 });
36 36
37 }, 'Importing a non-existant script rejects the given promise with a Network Error.'); 37 }, 'Importing a non-existant script rejects the given promise with a Network Error.');
38 38
39 promise_test(function() { 39 promise_test(function() {
40 40
41 return paintWorklet.import('http://invalid:123$').then(function() { 41 return animationWorklet.import('http://invalid:123$').then(function() {
42 assert_unreached('import should fail.'); 42 assert_unreached('import should fail.');
43 }).catch(function(error) { 43 }).catch(function(error) {
44 assert_equals(error.name, 'SyntaxError', 'error should be a SyntaxEr ror.'); 44 assert_equals(error.name, 'SyntaxError', 'error should be a SyntaxEr ror.');
45 }); 45 });
46 46
47 }, 'Attempting to resolve an invalid URL should reject the given promise wit h a SyntaxError.'); 47 }, 'Attempting to resolve an invalid URL should reject the given promise wit h a SyntaxError.');
48 48
49 </script> 49 </script>
50 </body> 50 </body>
51 </html> 51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698