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

Side by Side Diff: ManualTests/nested-plugins.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 <script> 1 <script>
2 function toggleDisplay(element, button) 2 function toggleDisplay(element, button)
3 { 3 {
4 if (element.style.display == "none") 4 if (element.style.display == "none")
5 element.style.display = ""; 5 element.style.display = "";
6 else 6 else
7 element.style.display = "none"; 7 element.style.display = "none";
8 } 8 }
9 9
10 function toggleVisibility(element, button) 10 function toggleVisibility(element, button)
(...skipping 19 matching lines...) Expand all
30 </td> 30 </td>
31 </tr> 31 </tr>
32 <tr> 32 <tr>
33 <td> 33 <td>
34 <input type="checkbox" checked="true" onclick="toggleVisibility(docu ment.getElementById('middle'))"> Outer frame visibility 34 <input type="checkbox" checked="true" onclick="toggleVisibility(docu ment.getElementById('middle'))"> Outer frame visibility
35 </td> 35 </td>
36 <td> 36 <td>
37 <input type="checkbox" checked="true" onclick="toggleVisibility(docu ment.getElementById('middle').contentDocument.getElementById('inner'))"> Inner f rame visibility 37 <input type="checkbox" checked="true" onclick="toggleVisibility(docu ment.getElementById('middle').contentDocument.getElementById('inner'))"> Inner f rame visibility
38 </td> 38 </td>
39 <td> 39 <td>
40 <input type="checkbox" checked="true" onclick="toggleVisibility(docu ment.getElementById('middle').contentDocument.getElementById('inner').contentDoc ument.getElementById('plugin'))"> Inner plug-in visibility 40 <input type="checkbox" checked="true" onclick="toggleVisibility(docu ment.getElementById('middle').contentDocument.getElementById('inner').contentDoc ument.getElementById('plugin'))"> Inner plugin visibility
41 </td> 41 </td>
42 </tr> 42 </tr>
43 </table> 43 </table>
44 44
45 <iframe id="middle" style="height: 400px; width: 400px;" src="resources/nested-p lug-ins-outer-frame.html"></iframe> 45 <iframe id="middle" style="height: 400px; width: 400px;" src="resources/nested-p lugins-outer-frame.html"></iframe>
OLDNEW
« no previous file with comments | « ManualTests/nested-plug-ins.html ('k') | ManualTests/plug-in-mutates-NSView-hierarchy-during-resize.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698