summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
AgeCommit message (Expand)Author
2020-06-15LibWeb: Just ignore <script> elements that failed to load the scriptAndreas Kling
2020-06-15LibWeb: Use the URL encoder from AK instead of rolling a custom oneAndreas Kling
2020-06-15LibWeb: Force a full relayout if an element's CSS display changesAndreas Kling
2020-06-15LibWeb: Allow block children of inlinesAndreas Kling
2020-06-15LibWeb: Respect CSS z-index property while paintingAndreas Kling
2020-06-15LibWeb: Layout nodes without own style can't be absolutely positionedAndreas Kling
2020-06-14LibWeb: Make the specificity sort comparator a bit more readableAndreas Kling
2020-06-14LibWeb: Don't assert when containing block doesn't know how to placeAndreas Kling
2020-06-14LibWeb: Don't animate images outside the visible viewport :^)Andreas Kling
2020-06-14LibWeb: Move "visible in viewport" state tracking to ImageLoaderAndreas Kling
2020-06-14LibWeb: Move bitmap animation from HTMLImageElement to ImageLoaderAndreas Kling
2020-06-14LibWeb: Remove some unused functions from LayoutTableAndreas Kling
2020-06-14LibWeb: Remove some unused functions from HTMLImageElementAndreas Kling
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-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-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-13LibWeb: Don't try to be clever about -libweb-center relative positionAndreas Kling
2020-06-13LibWeb: Remove some unused functions in LayoutTableRowAndreas 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-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-13AK: JsonParser improvementsMatthew Olsson
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