summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-06-08LibJS: Move regex logic to main Lexer if statementMatthew Olsson
2020-06-08LibJS: Properly consume escaped backslash in regex literalMatthew Olsson
2020-06-07LibLine: Correctly handle line content overflow when on last lineAnotherTest
2020-06-07LibLine: Use more descriptive names for row/columnAnotherTest
2020-06-07LibWeb: Use HTML::TagNames globals in the new HTML parserAndreas Kling
2020-06-07LibWeb: Add HTML::TagNames namespace for global tag name FlyStringsAndreas Kling
2020-06-07LibWeb: Add (stub) HTMLTable{,Cell,Row}Element C++ classesAndreas Kling
2020-06-07LibIPC+Services: Support URL as a native IPC typeAndreas Kling
2020-06-07LibGUI: Don't scroll cursor into view while reflows are deferredAndreas Kling
2020-06-07LibJS: Fix big int division lexing as UnterminatedRegexLiteralMatthew Olsson
2020-06-07LibJS: Add BigIntLinus Groh
2020-06-07LibCrypto: Add bitwise operations (and/or/xor)AnotherTest
2020-06-07LibCrypto: Make ModularFunctions.h compile as part of LagomLinus Groh
2020-06-07LibCrypto: Fix to_base10() for zero-value BigIntegersLinus Groh
2020-06-07LibJS: Move Value::as_accessor() to Value.hLinus Groh
2020-06-07LibJS: Use switch/case for Value::to_{string{_w/o_side_effects},boolean}Linus Groh
2020-06-07LibJS: Remove reduntant set_prototype() callsLinus Groh
2020-06-07LibWeb: Fix codepoint_from_entity() never returning an errorAndreas Kling
2020-06-07LibWeb: Fix tokenizer swallowing an extra token after a named entityAndreas Kling
2020-06-07LibWeb: Unbreak <a title> tooltips in the main frameAndreas Kling
2020-06-07LibJS: Lex and parse regex literals, add RegExp objectsMatthew Olsson
2020-06-07LibGUI: Fix broken clip rect when scrolling a TextEditorAndreas Kling
2020-06-07LibWeb: Start fleshing out support for relative CSS unitsAndreas Kling
2020-06-07LibWeb: Fix broken paint invalidation after subframe changesAndreas Kling
2020-06-07LibWeb: Let subframes propagate paint invalidations via host elementAndreas Kling
2020-06-07LibWeb: Remove unused Document::on_layout_updated hookAndreas Kling
2020-06-07LibWeb: Open subframe links inside the subframe itselfAndreas Kling
2020-06-07LibWeb: Add per-Frame EventHandler, handle mouse events recursivelyAndreas Kling
2020-06-07LibWeb: Move Frame.{cpp,h} into a new Frame/ directoryAndreas Kling
2020-06-06LibWeb: Whine in debug log instead of asserting on partial layout FIXMEAndreas Kling
2020-06-06LibJS: Add Proxy objectsMatthew Olsson
2020-06-06LibJS: Value.in uses has_property instead of get().is_empty()Matthew Olsson
2020-06-06LibJS: Object.setPrototypeOf throws error on too few argumentsMatthew Olsson
2020-06-06LibJS: Add PropertyDescriptor objectMatthew Olsson
2020-06-06LibJS: Distinguish between omitted descriptor attributes and false onesMatthew Olsson
2020-06-06LibGUI: Fix TextEditor painting glitch after add_clip_rect() changeAndreas Kling
2020-06-06LibGfx: Make Painter::add_clip_rect() use logical coordinatesAndreas Kling
2020-06-06LibWeb: Make Frame::page_view() always go via main_frame()Andreas Kling
2020-06-06LibWeb: Handle EOF tokens during "text" insertionAndreas Kling
2020-06-06LibWeb: Delay sub-Frame construction until host Document is attachedAndreas Kling
2020-06-06LibWeb: Add Node notifications for Document<=>Frame attach/detachAndreas Kling
2020-06-06LibWeb: Show error page if we can't handle a frame's main resourceAndreas Kling
2020-06-06LibWeb: Let Resource figure out its own encoding and MIME typeAndreas Kling
2020-06-06LibWeb: Always scroll PageView to top when a new document is setAndreas Kling
2020-06-06LibWeb: Turn FrameLoader into a ResourceClientAndreas Kling
2020-06-06LibWeb: Make Document::url() return URL by valueAndreas Kling
2020-06-06LibWeb: Use FrameLoader to load iframes :^)Andreas Kling
2020-06-06LibWeb: Add a FrameLoader class and move PageView's loading logic thereAndreas Kling
2020-06-06LibJS: Fix rest-params test to take function hoisting into accountMarcin Gasperowicz
2020-06-06LibJS: Hoist function declarationsMarcin Gasperowicz