summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML
AgeCommit message (Expand)Author
2022-02-15LibWeb: Fail gracefully when reaching the unimplemented part of the AAALinus Groh
2022-02-15LibWeb: Implement state switch for "[CDATA[" in HTML parserLinus Groh
2022-02-15LibWeb: Add an optional pointer to an HTMLParser to the HTMLTokenizerLinus Groh
2022-02-15LibWeb: Remove unused HTMLParser function declarationLinus Groh
2022-02-15LibWeb: Add spec links to each HTML tokenizer state sectionLinus Groh
2022-02-15LibWeb: Don't delay document load event forever with cached style sheetsAndreas Kling
2022-02-15LibWeb: Force a relayout when scrolling to anchorAndreas Kling
2022-02-15LibWeb: Repaint entire viewport after document layoutAndreas Kling
2022-02-15LibWeb: Implement HTMLElement.click()Andreas Kling
2022-02-15LibWeb: Add spec comments to the StackOfOpenElements classAndreas Kling
2022-02-15LibWeb: Rename element_before() => element_immediately_above()Andreas Kling
2022-02-15LibWeb: Add spec comments to find_appropriate_place_for_inserting_node()Andreas Kling
2022-02-15LibWeb: Remove non-standard ReturnNullIfCrossOrigin IDL attributeLinus Groh
2022-02-15LibWeb: Implement BCC's "content document" concept according to specLinus Groh
2022-02-15LibWeb: Rename Origin::is_same() to Origin::is_same_origin()Linus Groh
2022-02-14LibWeb: Don't emit current token on EOF in HTML TokenizerKarol Kosek
2022-02-14LibWeb: Fix highlighting HTML commentsKarol Kosek
2022-02-13LibWeb: Fix off-by-one in HTMLTokenizer::restore_to()MacDue
2022-02-12LibWeb: Add support for 'arraybuffer' message types on WebSocketsserenitydev
2022-02-09LibWeb: Add initial implementation for WorkerGlobalScopeAndrew Kaster
2022-02-09LibWeb: Do not set Content-Length headers twice for POST requestsBrian Gianforcaro
2022-02-08Browser+LibWeb: Add "Dump Local Storage" item to Browser's Debug menuAndreas Kling
2022-02-08LibWeb: Add Storage interface and window.localStorageAndreas Kling
2022-02-08LibWeb: Implement the JS host hooks for promises, job callbacks and moreLuke Wilde
2022-02-08LibWeb: Rewrite EventTarget to more closely match the specLuke Wilde
2022-02-08LibWeb: Make FormAssociatedElement inherit from HTMLElementLuke Wilde
2022-02-08LibWeb: Introduce the Environment Settings ObjectLuke Wilde
2022-02-08LibWeb: Support passing more parameter types to HTML::report_exception()Andreas Kling
2022-02-08LibJS+Everywhere: Remove VM::exception() and most related functionsdavidot
2022-02-08LibJS: Convert ArrayBuffer construction to ThrowCompletionOrdavidot
2022-02-07LibWeb: Rename "result" => "evaluation_status" in ClassicScript::run()Andreas Kling
2022-02-07LibWeb: Remove outdated FIXME from ClassicScript::run()Andreas Kling
2022-02-07LibWeb: Implement ErrorEventLuke Wilde
2022-02-07LibWeb: Fix broken step 4.3 implementation in run_focus_update_steps()Andreas Kling
2022-02-07LibWeb: Use NonnullRefPtrVector<DOM::Node> for focus chainsAndreas Kling
2022-02-07LibWeb: Improve step 3 of "focus chain" from the HTML specAndreas Kling
2022-02-07LibWeb: Fix inverted null check in run_focusing_steps()Andreas Kling
2022-02-07LibWeb: Add a proper FocusEvent interface for "focus" and "blur" eventsAndreas Kling
2022-02-06LibWeb: Make HTMLInputElement move cursor into text node when focusedAndreas Kling
2022-02-06LibWeb: Implement (most of) HTMLElement.focus()Andreas Kling
2022-02-06LibWeb: Implement BrowsingContext::currently_focused_area()Andreas Kling
2022-02-06LibWeb: Rename "frame" to "browsing_context" in various placesAndreas Kling
2022-02-05LibWeb: Put ClassicScript debug spam behind HTML_SCRIPT_DEBUGAndreas Kling
2022-02-05LibWeb: Implement CanvasGradient.addColorStop() according to specAndreas Kling
2022-02-05LibWeb: Compute element style in Layout::TreeBuilderAndreas Kling
2022-02-03LibWeb: Forward CanvasRenderingContext.strokeText() to fillText()Andreas Kling
2022-02-03LibWeb: Add barebones CanvasGradient objectAndreas Kling
2022-02-03LibWeb: Add CanvasRenderingContext2D.bezierCurveTo()Andreas Kling
2022-01-22LibJS: Refactor interpreter to use Script and Source Text ModulesLuke Wilde
2022-01-15LibCore+LibIPC+Everywhere: Return Stream::LocalSocket from LocalServersin-ack