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

Side by Side Diff: LayoutTests/plugins/npruntime/invoke.html

Issue 1319473007: Delete a bunch of NPAPI layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body>
3 <embed name="plg" type="application/x-webkit-test-netscape"></embed>
4 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=7708">bug 7708</a>:
5 REGRESSION: Flash callback to JavaScript function not working.</p>
6 <div id=res>FAILURE</div>
7 <script>
8
9 if (window.testRunner)
10 testRunner.dumpAsText();
11
12 function MyCallback() {
13 document.getElementById('res').innerHTML = 'SUCCESS';
14 }
15
16 try {
17
18 plg.testCallback('MyCallback');
19
20 } catch (ex) {
21 alert("Exception: " + ex.description);
22 }
23 </script>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698