summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-06-14LibWeb: Reorganize layout algorithmAndreas Kling
2020-06-14LibWeb: Dump layout node style properties in alphabetical orderAndreas Kling
2020-06-14LibWeb: Simplify LayoutBlock::layout_block_children() a little bitAndreas Kling
2020-06-14LibWeb: Add LayoutNode::frame() reference getterAndreas Kling
2020-06-14LibWeb: Don't choke when trying to render a document-less <iframe>Andreas Kling
2020-06-14LibWeb: Fully implement HTML parser "in table" insertion modeLuke
2020-06-14LibWeb: Implement HTML parser "in column group" insertion modeLuke
2020-06-14LibWeb: Implement HTML parser "in caption" insertion modeLuke
2020-06-14LibWeb: Implement all CDATA tokenizer statesLuke
2020-06-14LibWeb: Fully implement all DOCTYPE tokenizer statesLuke
2020-06-14LibWeb: Fully implement all comment tokenizer statesLuke
2020-06-13LibWeb: Add basic <object> element supportAndreas Kling
2020-06-13LibWeb: Split out image loading logic from HTMLImageElementAndreas Kling
2020-06-13LibWeb: Add "data" to HTML::AttributeNamesAndreas Kling
2020-06-13ProtocolServer+LibProtocol: Propagate HTTP status codes to clientsAndreas Kling
2020-06-13LibWeb: Fix LayoutImage stupidly painting backgrounds over itselfAndreas Kling
2020-06-13LibGfx: Painter::draw_line() can just return early if alpha == 0Andreas Kling
2020-06-13LibWeb: Have DOM nodes start out in "needs style update" stateAndreas Kling
2020-06-13LibWeb: Expand background:none into background-color:transparentAndreas Kling
2020-06-13LibGfx: Add Color::Transparent as a named colorAndreas Kling
2020-06-13LibWeb: <link rel> is actually a space-separated list of tokensAndreas Kling
2020-06-13LibWeb: Sort style properties by name in the inspector windowAndreas Kling
2020-06-13LibGfx: Implement support for decoding interlaced PNGsPaul Roukema
2020-06-13LibGfx: Fix PNG decoder handling of 16-bit RGB imagesPaul Roukema
2020-06-13LibWeb: Don't try to be clever about -libweb-center relative positionAndreas Kling
2020-06-13LibGfx: Silence debug spam in the PNG decoderAndreas Kling
2020-06-13LibWeb: Remove some unused functions in LayoutTableRowAndreas Kling
2020-06-13LibGfx: Don't keep an unused GIF decoder plugin in failed ImageDecodersAndreas Kling
2020-06-13LibWeb: Silence debug spam about reuse of cached resourcesAndreas Kling
2020-06-13LibWeb: Turn <td align> into CSS text-alignAndreas Kling
2020-06-13LibWeb: Teach line layout to collapse whitespace across fragmentsAndreas Kling
2020-06-13LibIPC: Only start responsiveness timer after sending client a messageAndreas Kling
2020-06-13LibWeb: Fix broken tokenization of hexadecimal character referencesAndreas Kling
2020-06-13LibWeb: Implement <center> as -libweb-centerAndreas Kling
2020-06-13LibWeb: Turn <table bgcolor> into CSS background-colorAndreas Kling
2020-06-13LibWeb: Tweak UA style to reset text-align on table elementsAndreas Kling
2020-06-13LibJS: Add JSON.parseMatthew Olsson
2020-06-13AK: JsonParser improvementsMatthew Olsson
2020-06-13LibJS: Add JSON.stringifyMatthew Olsson
2020-06-13LibKeyboard: Move character map from Kernel to LibKeyboardHüseyin ASLITÜRK
2020-06-13LibWeb: Sort matched style rules by specificity, document orderAndreas Kling
2020-06-13LibWeb: Fix broken Specificity::operator==Andreas Kling
2020-06-13LibWeb: Include selector pseudo-class in style sheet dumpsAndreas Kling
2020-06-13LibWeb: Simplify Node::is_link()Andreas Kling
2020-06-13LibWeb: Parse and match the :visited pseudo-class (always fails)Andreas Kling
2020-06-13LibWeb: More work on table layoutAndreas Kling
2020-06-13LibWeb: Allow url("foo") and url('foo') in CSS background-image valuesAndreas Kling
2020-06-13LibWeb: Add "colspan" to HTML::AttributeNamesAndreas Kling
2020-06-13LibWeb: Add LayoutTableCell::colspan()Andreas Kling
2020-06-12LibWeb: First cut of extremely naive table row layoutAndreas Kling