summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/dynamic-style-attribute-query.html
blob: e63f1f93f687daafba6dcf55d920ce900880d98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
<script src="../js/resources/js-test-pre.js"></script>
</head>
<body>
<div id="testDiv">
</div>
<script>
document.getElementById('testDiv').style.top = 0;
shouldNotBe("document.querySelector('#testDiv[style]')", "null");
</script>
</body>
<script src="../js/resources/js-test-post.js"></script>
</html>