blob: bb021d75e451356f2de621db6767228ee5bb0f44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!doctype html>
<title>Test whether it can access a filed in MediaList with normal privilege after accessing with chrome privilege.</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
@media screen and (max-width: 800px) {
body {
background-color: lime;
}
}
</style>
<script>
"use strict";
const chromeDocument = SpecialPowers.wrap(document);
assertMediaText(chromeDocument);
assertMediaText(document);
function assertMediaText(doc) {
const stylesheet = doc.styleSheets[0];
const rule = stylesheet.cssRules[0];
const media = rule.media;
is(rule.media.mediaText, "screen and (max-width: 800px)");
}
</script>
|