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

Unified Diff: LayoutTests/plugins/instance-available-before-stylesheets-loaded-object.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/plugins/instance-available-before-stylesheets-loaded-object.html
diff --git a/LayoutTests/plugins/instance-available-before-stylesheets-loaded-object.html b/LayoutTests/plugins/instance-available-before-stylesheets-loaded-object.html
index 71e85c51292e9aac6b9e2eedbaaa6eb463ed26d2..5f827f9911b1e8d2d8e7a50a3a7465ce63c29fa2 100644
--- a/LayoutTests/plugins/instance-available-before-stylesheets-loaded-object.html
+++ b/LayoutTests/plugins/instance-available-before-stylesheets-loaded-object.html
@@ -1,15 +1,15 @@
<link rel="stylesheet" href="data:text/css,">
-<object id="plug-in" type="application/x-webkit-test-netscape" width=100 height=100></object>
+<object id="plugin" type="application/x-webkit-test-netscape" width=100 height=100></object>
<p id="result">
</p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
- var plugIn = document.getElementById("plug-in");
+ var plugIn = document.getElementById("plugin");
document.getElementById("result").innerText = ("eventLoggingEnabled" in plugIn)
- ? "PASS: Plug-in instance available while waiting for style sheets to load"
- : "FAIL: Plug-in not instantiated on property access while waiting for style sheets to load";
+ ? "PASS: Plugin instance available while waiting for style sheets to load"
+ : "FAIL: Plugin not instantiated on property access while waiting for style sheets to load";
</script>

Powered by Google App Engine
This is Rietveld 408576698