summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML
AgeCommit message (Expand)Author
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
2022-01-08LibJS: Convert Interpreter::run() to ThrowCompletionOr<Value>Linus Groh
2022-01-04LibWeb: Implement CanvasRenderingContext2D.measureTextsin-ack
2021-12-27LibWeb: Implement CanvasRenderingContext2D.isContextLost()Linus Groh
2021-12-27LibWeb: Implement CanvasRenderingContext2D.reset()Linus Groh
2021-12-27LibWeb: Implement CanvasRenderingContext2D.restore()Linus Groh
2021-12-27LibWeb: Implement CanvasRenderingContext2D.save()Linus Groh
2021-12-27LibWeb: Encapsulate canvas drawing state in a structLinus Groh
2021-12-27LibWeb: Let canvas {fill,stroke}Style default to black, not transparentLinus Groh
2021-12-27LibWeb: Fix copy/paste typo in CanvasRenderingContext2D::stroke_style()Linus Groh
2021-12-21LibWeb: Fix null-deref in <table> delete_row with index = -1 and no rowsLuke Wilde