| Index: LayoutTests/plugins/iframe-shims.html
|
| diff --git a/LayoutTests/plugins/iframe-shims.html b/LayoutTests/plugins/iframe-shims.html
|
| index 22a78d3d37214c03375f6bd3670020a0f728ae46..91e32227ee833063f6c4f81197e649f8fd85cef5 100644
|
| --- a/LayoutTests/plugins/iframe-shims.html
|
| +++ b/LayoutTests/plugins/iframe-shims.html
|
| @@ -42,7 +42,7 @@
|
| }
|
|
|
| function makeOverlayDiv(color, caseId)
|
| - {
|
| + {
|
| var o = document.createElement('div');
|
| o.style.position = 'absolute';
|
| o.style.top = '10px';
|
| @@ -92,8 +92,8 @@
|
| items++;
|
|
|
| var expectClickable = tags.expect && tags.expect.indexOf('UNDER') == -1;
|
| - expectedClicks[caseId] = expectClickable;
|
| -
|
| + expectedClicks[caseId] = expectClickable;
|
| +
|
| var container = document.getElementById('container');
|
| var root = document.createElement('div');
|
| root.style.position = 'absolute';
|
| @@ -117,7 +117,7 @@
|
| pluginDivZ = 100;
|
| overlayDivZIframe = 100;
|
| overlayDivZOverlay = 100;
|
| - } else if (tags.pluginExplicitHigherZIndex) {
|
| + } else if (tags.pluginExplicitHigherZIndex) {
|
| // For this test case we set the z-index for the iframe and the overlay
|
| // to be lower than the plugin.
|
| overlayDivZIframe = 100;
|
| @@ -131,8 +131,8 @@
|
| pd = makePluginElementWithHigherZIndex();
|
| } else {
|
| pd = makePluginElement();
|
| - }
|
| -
|
| + }
|
| +
|
| if (tags.pluginInsideDiv || pluginDivZ) {
|
| var parentdiv = document.createElement('div');
|
| parentdiv.appendChild(pd)
|
| @@ -153,18 +153,18 @@
|
| if (tags.overlayEarlier) {
|
| appendOverlay(overlayDivZIframe, overlayDivZOverlay, tags.overlayInsideDiv, expectClickable, caseId);
|
| appendPlugin();
|
| - } else {
|
| + } else {
|
| appendPlugin();
|
| if (tags.overlayOnTimeout) {
|
| setTimeout('appendOverlay('+overlayDivZIframe+', '+overlayDivZOverlay +', ' + tags.overlayInsideDiv + ', ' + expectClickable + ', ' + caseId + ')', 0);
|
| - } else {
|
| + } else {
|
| appendOverlay(overlayDivZIframe, overlayDivZOverlay, tags.overlayInsideDiv, expectClickable, caseId);
|
| }
|
| }
|
| }
|
|
|
| function doClick(id)
|
| - {
|
| + {
|
| clicks[id] = true;
|
|
|
| // Check success/failure.
|
| @@ -178,8 +178,8 @@
|
| output.innerHTML = 'FAILURE';
|
| return;
|
| }
|
| - }
|
| -
|
| + }
|
| +
|
| if (!waitingForMoreClicks) {
|
| output.innerHTML = 'SUCCESS';
|
| return;
|
|
|