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

Side by Side Diff: LayoutTests/platform/chromium/plugins/re-request-touch-events-crash.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../../../fast/js/resources/js-test-pre.js"></script>
4 </head>
5
6 <body>
7 <embed id="touch_plugin" type="application/x-webkit-test-webplugin" accepts-touc h="raw" re-request-touch="true"></embed>
8 <p id="description"></p>
9 <script>
10 description("This test ensures that we don't imbalance the touch event handler c ount if a plugin requests touch events more than once. The test passes if there are no touch event listeners after the plugin is removed, and there is no crash. Must be run in DRT.");
11
12 if (window.testRunner) {
13 testRunner.dumpAsText();
14
15 // Force the plugin to initialize
16 touch_plugin.offsetTop;
17
18 shouldBe("window.internals.touchEventHandlerCount(document)", "1")
19 touch_plugin.parentNode.removeChild(touch_plugin);
20 shouldBe("window.internals.touchEventHandlerCount(document)", "0")
21 }
22
23 </script>
24 </body>
25 <script src="../../../fast/js/resources/js-test-post.js"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698