summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb
AgeCommit message (Expand)Author
2021-10-03LibJS: Convert set_integrity_level() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert Object::set() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert Object::get() to ThrowCompletionOrLinus Groh
2021-10-03LibWeb: Only auto-reschedule HTML::EventLoop when there are runnablesAndreas Kling
2021-10-03LibWeb: Remove unnecessary `this` capture in RequestAnimationFrameDriverAndreas Kling
2021-10-03LibWeb: Remove pointless brackets from Length::to_string()Andreas Kling
2021-10-03LibWeb: Make ColorStyleValue serialization spec compliantAndreas Kling
2021-10-03LibWeb: Don't update rendering in BrowsingContexts without opportunityAndreas Kling
2021-10-03LibWeb: Let HTML::EventLoop drive the firing of `resize` eventsAndreas Kling
2021-10-03LibWeb: Let HTML::EventLoop drive animation frame callbacksAndreas Kling
2021-10-03LibWeb: Let HTML::EventLoop keep track of live DOM::Document objectsAndreas Kling
2021-10-03LibWeb: Allow Document::ref() when ref-count is zeroAndreas Kling
2021-10-03LibWeb: Only take runnable tasks from the HTML task queueAndreas Kling
2021-10-03LibWeb: Improve HTML::EventLoop::spin_until()Andreas Kling
2021-10-03LibWeb: Have CSSStyleRule inherit from CSSRule in IDLLuke Wilde
2021-10-03LibWeb: Pass the correct timestamp to requestAnimationFrame callbacksAndreas Kling
2021-10-03LibWeb: Run setTimeout() and setInterval() callbacks as HTML tasksAndreas Kling
2021-10-03LibWeb: Convert Node.childNodes to NodeListLuke Wilde
2021-10-03LibWeb: Convert ParentNode.querySelectorAll to NodeListLuke Wilde
2021-10-03LibWeb: Add support for NodeListLuke Wilde
2021-10-02LibJS: Put zombie cell tracking code behind a compile-time flagAndreas Kling
2021-10-02LibJS+LibWeb: Use Object::set_prototype() in more placesLinus Groh
2021-10-02LibWeb: Implement Navigator.cookieEnabledLinus Groh
2021-10-01LibWeb: Implement CSSRule and CSSStyleDeclaration serializationAndreas Kling
2021-10-01LibWeb: Make CSSStyleDeclaration support both dashed-name and camelCaseAndreas Kling
2021-10-01LibWeb: Add missing virtual/override/final in CSSStyleRuleAndreas Kling
2021-10-01LibWeb: Flexbox: Catch zero flex-basis and use width insteadTobias Christiansen
2021-10-01LibWeb: Create real Keybord & Message events in Document::create_eventIdan Horowitz
2021-10-01LibWeb: Change the type of MouseEvent members to doubleIdan Horowitz
2021-10-01LibWeb: Add the missing KeyboardEvent IDL constructorIdan Horowitz
2021-10-01LibWeb: Dispatch keydown/keyup events on the appropriate targetIdan Horowitz
2021-10-01LibWeb: Change the parent interface of MouseEvent to UIEventIdan Horowitz
2021-10-01LibWeb: Add the missing UIEvent IDL constructorIdan Horowitz
2021-10-01LibWeb: Add the UIEvent::{view, detail} IDL attributesIdan Horowitz
2021-10-01LibWeb: Add the missing PageTransitionEvent IDL constructorIdan Horowitz
2021-10-01LibWeb: Add the missing ProgressEvent IDL constructorIdan Horowitz
2021-10-01LibWeb: Add the missing SubmitEvent IDL constructorIdan Horowitz
2021-10-01LibWeb: Add the missing MessageEvent IDL constructorIdan Horowitz
2021-10-01LibWeb: Add the lastEventId IDL attribute to MessageEventIdan Horowitz
2021-10-01LibWeb: Change the IDL type of MessageEvent::data to anyIdan Horowitz
2021-10-01LibWeb: Add the missing CloseEvent IDL constructorIdan Horowitz
2021-10-01LibWeb: Use the LibWeb source directory as the IDL #import base pathIdan Horowitz
2021-10-01LibWeb: Parse media queries! :^)Sam Atkins
2021-10-01LibWeb: Add TokenStream::rewind_to_position()Sam Atkins
2021-10-01LibWeb: Parse `@media` rules into CSSMediaRule objectsSam Atkins
2021-10-01LibWeb: Make consume_a_qualified_rule() understand block tokensSam Atkins
2021-10-01LibWeb: Make MediaQueryList store MediaQueries instead of a StringSam Atkins
2021-10-01LibWeb: Sketch out media-query parsingSam Atkins
2021-10-01LibWeb: Add CSSMediaRuleSam Atkins
2021-10-01LibWeb: Add MediaListSam Atkins