summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
AgeCommit message (Expand)Author
2020-12-09LibWeb: Expose DOM::Range to JavaScript.asynts
2020-12-09LibWeb: Make DOM::Range more suitable for JS.asynts
2020-12-09LibWeb: Join start and end after deleting selection.asynts
2020-12-09LibWeb: Implement deletion of more complex selections.asynts
2020-12-09LibWeb: Fix many bugs with the editing.asynts
2020-12-09LibWeb: Add support for cursor movement and delete.asynts
2020-12-09LibWeb: Support range delection accross nodes with shared parent.asynts
2020-12-09LibWeb: Add support for range deletion.asynts
2020-12-09LibWeb: Move editing stuff into EditEventHandler.asynts
2020-12-09IDL: Produce better error messages when parsing IDL files.asynts
2020-12-09LibWeb: Don't allocate XMLHttpRequestConstructor twiceLinus Groh
2020-12-09LibWeb: Disallow construction of XMLHttpRequest without 'new'Linus Groh
2020-12-08LibWeb: Build the DumpLayoutTree subdirectoryAndreas Kling
2020-12-08LibWeb: Add missing license header to DumpLayoutTreeAndreas Kling
2020-12-08LibWeb: Remove an empty line from OOPWVAndreas Kling
2020-12-08LibWeb: Add a simple DumpLayoutTree programAndreas Kling
2020-12-08LibWeb: Allow dumping layout tree into a StringBuilderAndreas Kling
2020-12-08LibWeb+WebContent: Add on_load_finish hook to web viewsAndreas Kling
2020-12-08LibWeb: <iframe src> same-origin check should be based on host documentAndreas Kling
2020-12-07LibWeb: Compute final line box width *after* placing all fragmentsAndreas Kling
2020-12-07LibWeb: When adding inline-block fragment to line, use border box widthAndreas Kling
2020-12-07LibWeb: Uhh, scale back the default padding on <ul> and <ol> a bitAndreas Kling
2020-12-07LibWeb: Add padding-left to the default UA style for <ol> and <ul>Andreas Kling
2020-12-07LibWeb: Include padding+border in shrink-to-fit preferred min widthAndreas Kling
2020-12-07LibWeb: Resolve width in relative length units on inline-block properlyAndreas Kling
2020-12-07LibWeb: Simplify final line box width computationAndreas Kling
2020-12-07LibWeb: Use CSS::Length::resolved_or_zero() in a few placesAndreas Kling
2020-12-07LibWeb: Cache parsed inline style of DOM elementsAndreas Kling
2020-12-07LibWeb: Make layout tree dumps nicerAndreas Kling
2020-12-06LibWeb: Make document.title accessible from JavaScript :^)Andreas Kling
2020-12-06LibWeb: Strip and collapse whitespace in document.titleAndreas Kling
2020-12-06LibWeb: Forget floating boxes once we've gone past themAndreas Kling
2020-12-06LibWeb: Floating elements should not stack horizontally after clearAndreas Kling
2020-12-06LibWeb: Paint positioned elements after non-positioned onesAndreas Kling
2020-12-06LibWeb: Add Layout::Node::is_positioned()Andreas Kling
2020-12-06LibWeb: Pass current target box to BFC::run()Andreas Kling
2020-12-06LibWeb: Move box floatation out of normal flow layoutAndreas Kling
2020-12-06LibWeb: Layout floating children per block instead of whole BFC at onceAndreas Kling
2020-12-06LibWeb: Do floating box placement together with other boxesAndreas Kling
2020-12-06LibWeb: Naively implement the CSS clear propertyAndreas Kling
2020-12-06LibWeb: Floating boxes with width:auto should be shrink-to-fitAndreas Kling
2020-12-05LibWeb: Hit test floats using the top of lines, not middleAndreas Kling
2020-12-05LibWeb: Run clang-format on ReplacedBox.cppAndreas Kling
2020-12-05LibWeb: Don't subtract dubious "line spacing" from line y offsetsAndreas Kling
2020-12-05LibWeb: Floating boxes follow normal containing block rulesAndreas Kling
2020-12-05LibWeb: Fix off-by-one when computing available space between floatsAndreas Kling
2020-12-05LibWeb: First slightly naive implementation of CSS floats :^)Andreas Kling
2020-12-05LibWeb: Add Layout::Node::is_root_element()Andreas Kling
2020-12-04LibWeb: Block layout should account for vertical border spaceAndreas Kling
2020-12-04LibWeb: Block layout should resolve relative lengths against each boxAndreas Kling