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

Side by Side Diff: LayoutTests/plugins/npruntime/set-property.html

Issue 1005223002: Blink: Replace all "plug-in" with "plugin". (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Revert netscape-dom-access tests. Created 5 years, 9 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 <embed name="plg" type="application/x-webkit-test-netscape" width=100 height=100 ></embed> 1 <embed name="plg" type="application/x-webkit-test-netscape" width=100 height=100 ></embed>
2 <p>Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=30295">https://b ugs.webkit.org/show_bug.cgi?id=30295</a> 2 <p>Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=30295">https://b ugs.webkit.org/show_bug.cgi?id=30295</a>
3 REGRESSION (r48492): Gmail voice and video chat doesn't work</i>.</p> 3 REGRESSION (r48492): Gmail voice and video chat doesn't work</i>.</p>
4 <p id="result">FAIL: Text did not run</p> 4 <p id="result">FAIL: Text did not run</p>
5 <script> 5 <script>
6 if (window.testRunner) 6 if (window.testRunner)
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 8
9 plg.eventLoggingEnabled = true; 9 plg.eventLoggingEnabled = true;
10 document.getElementById("result").innerText = plg.eventLoggingEnabled 10 document.getElementById("result").innerText = plg.eventLoggingEnabled
11 ? "PASS: Successfully set a plug-in's property" 11 ? "PASS: Successfully set a plugin's property"
12 : "FAIL: Failed to set a plug-in's property"; 12 : "FAIL: Failed to set a plugin's property";
13 13
14 plg.eventLoggingEnabled = false; 14 plg.eventLoggingEnabled = false;
15 </script> 15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698