summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/SelectorEngine.cpp
AgeCommit message (Expand)Author
2023-04-06LibWeb: Implement the `:defined` pseudo classLuke Wilde
2023-03-21LibWeb: Support the :scope pseudo classSimon Wanner
2023-03-20LibWeb: Implement selector matching for :indeterminate pseudo-classSrikavin Ramkumar
2023-03-20LibWeb: Match selected option elements with checked pseudo-classSrikavin Ramkumar
2023-03-11LibWeb: Use from_deprecated_fly_string() instead of from_utf8()Kenneth Myhra
2023-03-08LibWeb: Convert DOM::Element::m_classes to the new AK::FlyStringAndreas Kling
2023-02-19LibWeb: Port Selector to new StringsSam Atkins
2023-01-09AK+Everywhere: Rename FlyString to DeprecatedFlyStringTimothy Flynn
2022-09-30LibWeb: Apply :enabled pseudo class to only certain elementsLuke Wilde
2022-09-30LibWeb: Implement :enabled and :disabled pseudo classes to specLuke Wilde
2022-09-15LibWeb: Cache lowercased names in SimpleSelectorAndreas Kling
2022-09-14LibWeb: Make :link selector behave according to specAndreas Kling
2022-07-27LibWeb: Make :enabled and :disabled selector handling more idiomaticAndreas Kling
2022-07-04LibWeb: Use lowercase type selectors to match against html elementsnetworkException
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-29LibWeb: Implement attribute selector case identifierDaniel Glazman
2022-03-29LibWeb: Clarify attribute selectors when needle is emptyDaniel Glazman
2022-03-22LibWeb: Remove now-unused null values from Selector enumsSam Atkins
2022-03-22LibWeb: Use a Variant for SimpleSelector's contentsSam Atkins
2022-03-20LibWeb: Implement the :focus-within selectorSam Atkins
2022-03-20LibWeb: Add basic support for :lang() CSS selectorAndreas Kling
2022-03-18LibWeb: Implement `:nth-[last-]child(n of foo)` syntaxSam Atkins
2022-03-18LibWeb: Implement the :where() selectorSam Atkins
2022-03-18LibWeb: Implement the :is() selectorSam Atkins
2022-03-16LibWeb: :checked should only match inputs in checkbox/radio type stateAndreas Kling
2022-03-02LibWeb: Correct handling of negative step values in nth-foo() selectorsSam Atkins
2022-02-26LibWeb: Implement :nth-of-type and :nth-last-of-type selectors :^)Sam Atkins
2022-02-25LibWeb: Make CSS :empty selector match empty text nodes as wellAndreas Kling
2022-02-25LibWeb: Match styles for pseudo-elementsSam Atkins
2022-02-18LibWeb: Support CSS :only-of-type selectorAndreas Kling
2022-02-15LibWeb: Make :checked selector actually look at checkednessAndreas Kling
2022-02-10LibWeb: Make :root selector match <html> element onlyAndreas Kling
2022-02-05LibWeb: Mark SelectorEngine matches-related functions as inlineIdan Horowitz
2022-01-23LibWeb: Remove duplicate type checks in SelectorEngineAndreas Kling
2021-10-08Libraries: Fix -Wunreachable-code warnings from clangNico Weber
2021-09-03Everywhere: Use my shiny new serenityos.org email :^)Sam Atkins
2021-08-02LibWeb: Switch to new CSS Parser :^)Sam Atkins
2021-07-31LibWeb: Fix issues with CSS attribute selector handlingSam Atkins
2021-07-31LibWeb: Bring Selector terminology in line with the CSS specSam Atkins
2021-07-14LibWeb: Use split_view() in attribute selector matchingAndreas Kling
2021-07-14LibWeb: Use Selectors instead of a String for :not() selectorsSam Atkins
2021-07-14LibWeb: Make CSS::Selector reference countedSam Atkins
2021-07-14LibWeb: Add 'PseudoElement' as a CSS SimpleSelector::TypeSam Atkins
2021-07-14LibWeb: Add 'PseudoClass' as a CSS SimpleSelector::TypeSam Atkins
2021-07-14LibWeb: Add 'Attribute' as a CSS SimpleSelector::TypeSam Atkins
2021-07-14LibWeb: Convert CSS Dump, Selector, & SelectorEngine to east constSam Atkins
2021-07-11LibWeb: Add context to new CSS parser, and deprecate the old oneSam Atkins
2021-07-11LibWeb: Add remaining CSS AttributeMatchTypesSam Atkins
2021-06-25LibWeb: Support :active pseudo-class for hyperlinks, :focus possiblyPaul Irwin
2021-06-24AK: Rename downcast<T> => verify_cast<T>Andreas Kling