cssom
Version:
CSS Object Model implementation and CSS parser
21 lines • 322 B
HTML
<html>
<head>
<title></title>
<style type="text/css">
body {
font: 14px sans-serif;
border: none;
background-repeat: no-repeat;
}
</style>
</head>
<body>
fuuu
<script type="text/javascript">
onload = function(){
console.dir(document.styleSheets[0].cssRules[0].style)
}
</script>
</body>
</html>