blob: accb3395d86debc224d862ea6bf842bba7c18827 [file] [log] [blame]
sataya.m7cbb3a02016-06-09 18:34:511<!DOCTYPE html>
sataya.mb34241632016-08-11 07:58:462<script src="../resources/testharness.js"></script>
3<script src="../resources/testharnessreport.js"></script>
sataya.m7cbb3a02016-06-09 18:34:514<style>
5::-webkit-scrollbar {
6 width: 150px;
7 height: 150px;
8}
9iframe {
10 width: 300px;
11 border: 0;
12 outline: 1px solid blue;
13}
14</style>
15<iframe srcdoc="
16 <style>
17 body { margin: 0; padding: 10px; height: 500px; font: 10pt monospace; }
18 </style>
19 "></iframe>
20<script>
sataya.mb34241632016-08-11 07:58:4621async_test(function(t) {
22 onload = t.step_func_done(function() {
23 var body = document.querySelector("iframe").contentDocument.body;
24 assert_equals(285, body.clientWidth);
25 });
26});
27</script>