is(
sheet.cssRules[0].cssRules[0].cssRules[0].cssText,
`&.mySpan { color: black; }`, "Nested rule has expected text after updating the stylesheet"
);
info("Flush layout");
// This is important to reproduce the original issue
document.documentElement.getBoundingClientRect();
is(
getComputedStyle(spanEl).color, "rgb(0, 0, 0)", "the color of the span element was properly updated"
);
const rules = InspectorUtils.getMatchingCSSRules(spanEl);
is(
rules.length,
2, "getMatchingCSSRules still returned 2 rules for .mySpan after stylesheet was updated"
);
is(rules[1].style.color, "black", "rule was properly updated");
});
</script>
</body>
</html>
Messung V0.5
¤ Dauer der Verarbeitung: 0.10 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.