blob: b71aea6415cffd593fb12786335b258fe5ba5765 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
<style>
.test {
color: red;
}
</style>
<style id="non-css" type="foo/bar"></style>
<style id="s">
.test {
color: green;
}
</style>
</head>
<body>
<script src="script-tests/disable-style-element.js"></script>
</body>
</html>
|