| Index: Source/web/tests/data/frame_owner_properties.html
|
| diff --git a/Source/web/tests/data/frame_owner_properties.html b/Source/web/tests/data/frame_owner_properties.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bc09d7df1f72b1dea1916071402918108815ae28
|
| --- /dev/null
|
| +++ b/Source/web/tests/data/frame_owner_properties.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +</head>
|
| +<body>
|
| +<div id="content"></div>
|
| +<script>
|
| + var marginWidth = document.body.getAttribute('marginwidth') || 0;
|
| + var marginHeight = document.body.getAttribute('marginheight') || 0;
|
| + document.querySelector('#content').innerText = marginWidth + '/' + marginHeight;
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|