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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
<!doctype html>
<title>CSS Selectors Test: Tests the style attribute used in an attribute selector</title>
<link rel="help" href="https://drafts.csswg.org/selectors/#attribute-selectors">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#container { font-size: 16px; color: black; }
.test[style] { color: green }
.test[style=""] { font-size: 100px }
.test[style*="text-decoration"] { background-color: lime }
.test[style] + #sibling { color: green; }
.test[style*="text-decoration"] + #sibling { background-color: lime; }
</style>
<div id="container">
<div id="t1" class="test" style></div>
<div id="t2" class="test" style=""></div>
<div id="t3" class="test" style="text-decoration:underline"></div>
<div id="t4" class="test"></div>
<div id="sibling"></div>
</div>
<script>
const no_match_bgcolor = "rgba(0, 0, 0, 0)";
const no_match_color = "rgb(0, 0, 0)";
const no_match_font_size = "16px";
const match_bgcolor = "rgb(0, 255, 0)";
const match_color = "rgb(0, 128, 0)";
const match_font_size = "100px";
test(() => {
assert_equals(getComputedStyle(t1).backgroundColor, no_match_bgcolor);
assert_equals(getComputedStyle(t1).color, match_color);
assert_equals(getComputedStyle(t1).fontSize, match_font_size);
}, "Match style attribute with no value");
test(() => {
assert_equals(getComputedStyle(t2).backgroundColor, no_match_bgcolor);
assert_equals(getComputedStyle(t2).color, match_color);
assert_equals(getComputedStyle(t2).fontSize, match_font_size);
}, "Match style attribute with empty value");
test(() => {
assert_equals(getComputedStyle(t3).backgroundColor, match_bgcolor);
assert_equals(getComputedStyle(t3).color, match_color);
assert_equals(getComputedStyle(t3).fontSize, no_match_font_size);
}, "Match style attribute with background value");
test(() => {
assert_equals(getComputedStyle(t4).backgroundColor, no_match_bgcolor);
assert_equals(getComputedStyle(t4).color, no_match_color);
assert_equals(getComputedStyle(t4).fontSize, no_match_font_size);
assert_equals(getComputedStyle(sibling).color, no_match_color);
}, "Initially no style attribute to match");
function reset_style(element) {
element.removeAttribute("style");
element.offsetTop;
}
function set_style(element) {
element.setAttribute("style", "text-decoration: underline");
element.offsetTop;
}
test(() => {
reset_style(t4);
t4.setAttribute("style", "text-decoration: underline");
assert_equals(getComputedStyle(t4).backgroundColor, match_bgcolor);
assert_equals(getComputedStyle(t4).color, match_color);
assert_equals(getComputedStyle(t4).fontSize, no_match_font_size);
assert_equals(getComputedStyle(sibling).color, match_color);
}, "Dynamically change style with Element.setAttribute");
test(() => {
reset_style(t4);
t4.style = "text-decoration: underline";
assert_equals(getComputedStyle(t4).backgroundColor, match_bgcolor);
assert_equals(getComputedStyle(t4).color, match_color);
assert_equals(getComputedStyle(t4).fontSize, no_match_font_size);
assert_equals(getComputedStyle(sibling).color, match_color);
}, "Dynamically change style with Element.style");
test(() => {
reset_style(t4);
t4.style.textDecoration = "underline";
assert_equals(getComputedStyle(t4).backgroundColor, match_bgcolor);
assert_equals(getComputedStyle(t4).color, match_color);
assert_equals(getComputedStyle(t4).fontSize, no_match_font_size);
assert_equals(getComputedStyle(sibling).color, match_color);
}, "Dynamically change style with Element.style.property");
test(() => {
set_style(t4);
t4.removeAttribute("style");
assert_equals(getComputedStyle(t4).backgroundColor, no_match_bgcolor);
assert_equals(getComputedStyle(t4).color, no_match_color);
assert_equals(getComputedStyle(t4).fontSize, no_match_font_size);
assert_equals(getComputedStyle(sibling).color, no_match_color);
assert_equals(getComputedStyle(sibling).backgroundColor, no_match_bgcolor);
}, "Dynamically remove style with Element.removeAttribute");
test(() => {
set_style(t4);
t4.style = "";
assert_equals(getComputedStyle(t4).backgroundColor, no_match_bgcolor);
assert_equals(getComputedStyle(t4).color, match_color);
assert_equals(getComputedStyle(t4).fontSize, match_font_size);
assert_equals(getComputedStyle(sibling).color, match_color);
assert_equals(getComputedStyle(sibling).backgroundColor, no_match_bgcolor);
}, "Dynamically remove style with Element.style");
test(() => {
set_style(t4);
t4.style.textDecoration = "";
assert_equals(getComputedStyle(t4).backgroundColor, no_match_bgcolor);
assert_equals(getComputedStyle(t4).color, match_color);
assert_equals(getComputedStyle(t4).fontSize, match_font_size);
assert_equals(getComputedStyle(sibling).color, match_color);
assert_equals(getComputedStyle(sibling).backgroundColor, no_match_bgcolor);
}, "Dynamically remove style with Element.style.property");
test(() => {
set_style(t4);
t4.style.removeProperty("text-decoration");
assert_equals(getComputedStyle(t4).backgroundColor, no_match_bgcolor);
assert_equals(getComputedStyle(t4).color, match_color);
assert_equals(getComputedStyle(t4).fontSize, match_font_size);
assert_equals(getComputedStyle(sibling).color, match_color);
assert_equals(getComputedStyle(sibling).backgroundColor, no_match_bgcolor);
}, "Dynamically remove style with Element.style.removeProperty");
</script>
|