summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/non-replaced-elements/the-page/iframe-marginwidth-marginheight.html
blob: b09cafbbe4252b735860e21bd9830bd82f639b03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<title>iframe marginwidth and marginheight</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<iframe src="/common/blank.html" marginwidth=0 marginheight=0></iframe>
<script>
setup({ single_test: true });
onload = () => {
  assert_equals(window[0].document.body.attributes.length, 0, "Number of attributes on the child document's body");
  done();
}
</script>