Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/frames/script-modify-iframe-attr.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/frames/script-modify-iframe-attr.html b/third_party/WebKit/LayoutTests/fast/frames/script-modify-iframe-attr.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..80e4b08cd765a31110d21bfd51100d759640bf3f |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/frames/script-modify-iframe-attr.html |
| @@ -0,0 +1,14 @@ |
| +<!DOCTYPE html> |
| + |
| +<script> |
| +window.onload = () => { |
| + var ifr = document.getElementById('ifr'); |
| + ifr.scrolling = 'no'; |
| + ifr.marginWidth = '50'; |
| + ifr.marginHeight = '100'; |
| +}; |
| +</script> |
| + |
| +<iframe id="ifr" scrolling="yes" style="width:200px;height:200px;" |
| + src="http://127.0.0.1:8000/fast/frames/resources/big-page.html"> |
|
alexmos
2016/11/21 17:56:56
Just to check: is this going to get OOPIF coverage
|
| +</iframe> |