summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML
AgeCommit message (Expand)Author
2021-09-26LibWeb: Add support for HTMLOrSVGElement.datasetLuke Wilde
2021-09-26LibWeb: Implement window.queueMicrotask(callback)Andreas Kling
2021-09-26LibWeb: Add the PageTransitionEvent interface and fire "pageshow" eventsAndreas Kling
2021-09-26LibWeb: Add a "page showing" flag to documentsAndreas Kling
2021-09-26LibWeb: Implement "update the current document readiness" from specAndreas Kling
2021-09-26LibWeb: Store HTML document ready state as an enumAndreas Kling
2021-09-26LibWeb: Implement more of "completely finish loading the document"Andreas Kling
2021-09-26LibWeb: Remove nonsensical assignment in script-became-ready callbackAndreas Kling
2021-09-26LibWeb: Make parser <script> elements delay the document load eventAndreas Kling
2021-09-26LibWeb: Allow HTML parser to delay delivery of the document "load" eventAndreas Kling
2021-09-26LibWeb: Remove some unused includes and a member in HTMLScriptElementAndreas Kling
2021-09-26LibWeb: Implement more of HTMLParser::the_end() and bring closer to specAndreas Kling
2021-09-26LibWeb: Split out "The end" from the HTML parsing spec to a functionAndreas Kling
2021-09-25LibWeb: Rename HTMLDocumentParser => HTMLParserAndreas Kling
2021-09-25LibWeb: Provide a default DOM::EventTarget::dispatch_event()Andreas Kling
2021-09-25LibWeb: Use Core::EventLoop::spin_until() for the ad-hoc loop spinningAndreas Kling
2021-09-25LibJS: Rename OrdinaryFunctionObject to ECMAScriptFunctionObjectLinus Groh
2021-09-24LibWeb: Rename CSS::StyleResolver => StyleComputerAndreas Kling
2021-09-24LibWeb: Let <br> elements have styleAndreas Kling
2021-09-24LibWeb: Make HTML::EventLoop::process() a no-op if there are no tasksAndreas Kling
2021-09-21LibWeb: Paint bitmaps with rounded_int_rect(), not enclosing_int_rect()Sam Atkins
2021-09-21Libraries: Use AK::Variant default initialization where appropriateBen Wiederhake
2021-09-20LibWeb: Enable bilinear blending for bitmapsSam Atkins
2021-09-20LibWeb: Implement <script src> execution for non-blocking scriptsAndreas Kling
2021-09-20LibWeb: Make <script src> loads partially async (by following the spec)Andreas Kling
2021-09-20LibWeb: Pop entire stack of open elements at the end of parsingAndreas Kling
2021-09-20LibWeb: Implement an ad-hoc version of EventLoop::spin_until(condition)Andreas Kling
2021-09-20LibWeb: Use Document::realm() in HTMLScriptElement::prepare_script()Andreas Kling
2021-09-19LibWeb: Implement basic support for MessageChannel and MessagePortAndreas Kling
2021-09-19LibWeb: Add HTML::Task::Source::PostedMessageAndreas Kling
2021-09-19LibWeb: Remove duplicated event handler attribute code in WebSocketAndreas Kling
2021-09-19LibWeb: Move `onfoo` attribute handling to EventTargetAndreas Kling
2021-09-18LibWeb: Don't attempt to run unparsed scriptsAndreas Kling
2021-09-17LibWeb: Add HTML::Task::Source::IdleTaskAndreas Kling
2021-09-16LibWeb: Add fast_is<HTMLTemplateElement>()Andreas Kling
2021-09-16LibWeb: Move Attribute into the DOM namespaceAndreas Kling
2021-09-14LibWeb: Improvements to error handling in HTML foreign content parsingAndreas Kling
2021-09-14LibJS+LibWeb: Move script parse time logging from JS::Script to LibWebAndreas Kling
2021-09-14LibJS+LibWeb: Let JS::Script::parse() return a list of errors (on error)Andreas Kling
2021-09-14LibWeb: Implement HTML fragment serialisation and use it in innerHTMLLuke Wilde
2021-09-13LibWeb: Add the Web::URL namespace and move URLEncoder to itIdan Horowitz
2021-09-12LibWeb: Log classic script start, finish, and durationAndreas Kling
2021-09-12LibJS: Change Interpreter::create_with_existing_{global_object => realm}Linus Groh
2021-09-12LibJS+LibWeb: Make JS::Script and Web::HTML::ClassicScript use RealmsLinus Groh
2021-09-12LibWeb+Browser: Add Debug menu action for toggling Same-Origin PolicyAndreas Kling
2021-09-12LibWeb: Add the History object and stub pushState and replaceStateLuke Wilde
2021-09-11LibWeb+LibJS: Remember source filenames when using HTML::ScriptAndreas Kling
2021-09-10LibWeb: Make "top-level browsing context" concept more spec-compliantAndreas Kling
2021-09-09LibWeb: Make HTMLScriptElement create and run ClassicScriptsAndreas Kling
2021-09-09LibWeb: Implement the "create" and "run" methods of ClassicScriptAndreas Kling