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

Unified Diff: third_party/WebKit/LayoutTests/virtual/threaded/fast/compositorworker/animation-worklet-animator-registration.html

Issue 2964563002: Removing --disable/enable-threaded-compositing cmdline switches.
Patch Set: Created 3 years, 6 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/virtual/threaded/fast/compositorworker/animation-worklet-animator-registration.html
diff --git a/third_party/WebKit/LayoutTests/virtual/threaded/fast/compositorworker/animation-worklet-animator-registration.html b/third_party/WebKit/LayoutTests/virtual/threaded/fast/compositorworker/animation-worklet-animator-registration.html
deleted file mode 100644
index 2e17f953f8688a88f1882cc2ad6e9cbedbffc7db..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/virtual/threaded/fast/compositorworker/animation-worklet-animator-registration.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-
-<!--
-TODO(majidvp): The try/catch in above test cases should not be needed but at the moment
-threaded worklet does not correctly pass error to its parent context. It crashes in
-https://codesearch.chromium.org/chromium/src/third_party/WebKit/Source/bindings/core/v8/WorkerOrWorkletScriptController.cpp?sq=package:chromium&dr&l=320
--->
-<script id="duplicate" type="text/worklet">
-try {
- registerAnimator("duplicate", class { animate() {} });
- registerAnimator("duplicate", class { animate() {} });
-} catch(e) { console.log(e); }
-</script>
-
-<script id="no_class" type="text/worklet">
-try {
- registerAnimator("no_class", "");
-} catch(e) { console.log(e); }
-</script>
-
-<script id="empty_string" type="text/worklet">
-try {
- registerAnimator("", class { animate() {} });
-} catch(e) { console.log(e); }
-</script>
-
-<script id="empty_string" type="text/worklet">
-registerAnimator("test", class {
- constructor() {
- console.log("test animator constructor called.");
- }
- animate() {}
-});
-</script>
-
-<script src="resources/animation-worklet-tests.js"></script>

Powered by Google App Engine
This is Rietveld 408576698