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

Unified Diff: ManualTests/nested-plug-ins.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
« no previous file with comments | « ManualTests/divx-plugin-fails-to-draw.html ('k') | ManualTests/nested-plugins.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/nested-plug-ins.html
diff --git a/ManualTests/nested-plug-ins.html b/ManualTests/nested-plug-ins.html
deleted file mode 100644
index 20a11fa65de2b687976aae2055ead4d04a01bf68..0000000000000000000000000000000000000000
--- a/ManualTests/nested-plug-ins.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<script>
- function toggleDisplay(element, button)
- {
- if (element.style.display == "none")
- element.style.display = "";
- else
- element.style.display = "none";
- }
-
- function toggleVisibility(element, button)
- {
- if (element.style.visibility == "hidden")
- element.style.visibility = "";
- else
- element.style.visibility = "hidden";
- }
-
-</script>
-<p>
- Play with the display and visibility toggles. Make sure that turning an inner element visible does not show it if it has a hidden or
- non-displaying ancestor, and that making an ancestor visible and displaying shows only its descendants the are visible and displaying.
-</p>
-<table>
- <tr>
- <td>
- <input type="checkbox" checked="true" onclick="toggleDisplay(document.getElementById('middle'))"> Outer frame display
- </td>
- <td>
- <input type="checkbox" checked="true" onclick="toggleDisplay(document.getElementById('middle').contentDocument.getElementById('inner'))"> Inner frame display
- </td>
- </tr>
- <tr>
- <td>
- <input type="checkbox" checked="true" onclick="toggleVisibility(document.getElementById('middle'))"> Outer frame visibility
- </td>
- <td>
- <input type="checkbox" checked="true" onclick="toggleVisibility(document.getElementById('middle').contentDocument.getElementById('inner'))"> Inner frame visibility
- </td>
- <td>
- <input type="checkbox" checked="true" onclick="toggleVisibility(document.getElementById('middle').contentDocument.getElementById('inner').contentDocument.getElementById('plugin'))"> Inner plug-in visibility
- </td>
- </tr>
-</table>
-
-<iframe id="middle" style="height: 400px; width: 400px;" src="resources/nested-plug-ins-outer-frame.html"></iframe>
« no previous file with comments | « ManualTests/divx-plugin-fails-to-draw.html ('k') | ManualTests/nested-plugins.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698