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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/compositorworker/compositor-attribute-change.html

Issue 1449953002: compositor-worker: Refactor CompositorWorkerManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add documentation and ASSERTS for some subtleties. Created 5 years 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
(Empty)
1 <!DOCTYPE html>
2 <div id="container"></div>
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <script>
6
7 test(function() {
8 var proxy = new CompositorProxy(document.getElementById('container'), ['opac ity']);
9 assert_throws("NoModificationAllowedError", function() { proxy.opacity = 0.4 ; });
10 assert_throws("NoModificationAllowedError", function() { return proxy.opacit y; });
11 }, "This test checks that a compositor proxy cannot be mutated from the main thr ead.");
12
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698