blob: 9b22948386cf32914ca75f9a53101f8e832a7d0e [file] [log] [blame]
sataya.m5dc58672016-09-15 11:48:251<!DOCTYPE html>
2<iframe frameborder="0"></iframe>
3<div id = "content">
4<div style="width: 400px; height: 400px"></div>
5</div>
6<script>
7 var idoc = document.querySelector("iframe").contentDocument;
8 var sheet = idoc.head.appendChild(idoc.createElement("style")).sheet;
9 idoc.body.innerHTML = document.querySelector('#content').innerHTML;
10 document.body.offsetTop;
11 sheet.insertRule("::-webkit-scrollbar { width: 50px; height: 20px; }", 0);
12 sheet.insertRule("::-webkit-scrollbar-thumb { background: green; }", 1);
13 </script>