mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:57:35 +00:00
LibWeb: Implement CSSStyleSheet.replaceSync()
This method behaves the same as `CSSStyleSheet.replace()` but the operation is performed synchronously.
This commit is contained in:
parent
81c67d34eb
commit
87b52a1816
5 changed files with 94 additions and 1 deletions
|
@ -0,0 +1,8 @@
|
|||
Exception thrown when calling replaceSync() on non-constructed stylesheet: NotAllowedError
|
||||
Number of CSS rules after replaceSync(): 2
|
||||
Rule: .test { font-size: 14px; }
|
||||
Rule: .test2 { font-size: 16px; }
|
||||
cssRules returns the same object before and after replaceSync(): true
|
||||
@import rule should be not appear below:
|
||||
Rule: .test { padding: 100px; }
|
||||
Calling replaceSync() while the disallow modification flag set throws: NotAllowedError
|
Loading…
Add table
Add a link
Reference in a new issue