mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb/CSS: Implement CSSPageRule.setSelectorText()
Some checks are pending
CI / Lagom (arm64, Sanitizer_CI, false, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (x86_64, Fuzzers_CI, false, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, false, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, true, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (arm64, macos-15, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (x86_64, ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Some checks are pending
CI / Lagom (arm64, Sanitizer_CI, false, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (x86_64, Fuzzers_CI, false, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, false, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (x86_64, Sanitizer_CI, true, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (arm64, macos-15, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (x86_64, ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Gets us 12 WPT subtest passes.
This commit is contained in:
parent
d852ae17e8
commit
c9484e279f
Notes:
github-actions[bot]
2025-05-16 15:45:04 +00:00
Author: https://github.com/AtkinsSJ
Commit: c9484e279f
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4771
3 changed files with 168 additions and 5 deletions
|
@ -8,6 +8,7 @@
|
|||
#include <LibWeb/Bindings/Intrinsics.h>
|
||||
#include <LibWeb/CSS/CSSPageRule.h>
|
||||
#include <LibWeb/CSS/DescriptorID.h>
|
||||
#include <LibWeb/CSS/Parser/Parser.h>
|
||||
#include <LibWeb/CSS/Serialize.h>
|
||||
#include <LibWeb/WebIDL/ExceptionOr.h>
|
||||
|
||||
|
@ -45,12 +46,17 @@ String CSSPageRule::selector_text() const
|
|||
}
|
||||
|
||||
// https://drafts.csswg.org/cssom/#dom-csspagerule-selectortext
|
||||
void CSSPageRule::set_selector_text(StringView)
|
||||
void CSSPageRule::set_selector_text(StringView text)
|
||||
{
|
||||
// FIXME: On setting the selectorText attribute these steps must be run:
|
||||
// 1. Run the parse a list of CSS page selectors algorithm on the given value.
|
||||
// 2. If the algorithm returns a non-null value replace the associated selector list with the returned value.
|
||||
// 3. Otherwise, if the algorithm returns a null value, do nothing.
|
||||
// On setting the selectorText attribute these steps must be run:
|
||||
// 1. Run the parse a list of CSS page selectors algorithm on the given value.
|
||||
auto page_selector_list = parse_page_selector_list(Parser::ParsingParams {}, text);
|
||||
|
||||
// 2. If the algorithm returns a non-null value replace the associated selector list with the returned value.
|
||||
if (page_selector_list.has_value())
|
||||
m_selectors = page_selector_list.release_value();
|
||||
|
||||
// 3. Otherwise, if the algorithm returns a null value, do nothing.
|
||||
}
|
||||
|
||||
// https://drafts.csswg.org/cssom/#ref-for-csspagerule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue