| Index: chrome/test/data/extensions/platform_apps/web_view/touch_accessibility/main.js
|
| diff --git a/chrome/test/data/extensions/platform_apps/web_view/focus_accessibility/main.js b/chrome/test/data/extensions/platform_apps/web_view/touch_accessibility/main.js
|
| similarity index 73%
|
| copy from chrome/test/data/extensions/platform_apps/web_view/focus_accessibility/main.js
|
| copy to chrome/test/data/extensions/platform_apps/web_view/touch_accessibility/main.js
|
| index 9fe2ee1957629b6bd638ab83693340f65d9b3cfa..39c4c5273b1a52c6b16da661593c4db27c642473 100644
|
| --- a/chrome/test/data/extensions/platform_apps/web_view/focus_accessibility/main.js
|
| +++ b/chrome/test/data/extensions/platform_apps/web_view/touch_accessibility/main.js
|
| @@ -18,7 +18,27 @@ function CreateWebViewAndGuest(callback) {
|
| webview.removeEventListener('loadabort', onLoadAbort);
|
| };
|
| webview.src = 'data:text/html,' +
|
| - '<html><body><button>Guest button</button></body></html>';
|
| + '<html>' +
|
| + '<head>' +
|
| + ' <style>' +
|
| + ' body {' +
|
| + ' border: 0;' +
|
| + ' margin: 0;' +
|
| + ' padding: 0;' +
|
| + ' }' +
|
| + ' button {' +
|
| + ' border: 0;' +
|
| + ' margin: 0;' +
|
| + ' padding: 0;' +
|
| + ' width: 200px;' +
|
| + ' height: 100px;' +
|
| + ' }' +
|
| + ' </style>' +
|
| + '</head>' +
|
| + '<body>' +
|
| + '<button>Guest button</button>'
|
| + '</body>'
|
| + '</html>';
|
| return webview;
|
| }
|
|
|
|
|