summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/Parser
AgeCommit message (Expand)Author
2023-05-08LibWeb: Don't include Layout/Node.h from DOM/Element.hAndreas Kling
2023-05-06LibWeb: Propagate errors from StyleValue constructionSam Atkins
2023-04-11LibWeb: Return from "the end" during HTML fragment parsingLuke Wilde
2023-04-09LibWeb: Port fire_a_page_transition_event() to new FlyStringKenneth Myhra
2023-04-07LibWeb: Port {Mouse,UI,Wheel,}Event to new StringKenneth Myhra
2023-04-06LibWeb: Port {HTML,UIEvents,XHR}::EventNames to new StringKenneth Myhra
2023-04-06LibWeb: Introduce CustomElementRegistry and creating custom elementsLuke Wilde
2023-03-30LibWeb: Remove redundant invocation of `children changed` in HTMLParserAndreas Kling
2023-03-25LibWeb: Split PercentageStyleValue out of StyleValue.{h,cpp}Sam Atkins
2023-03-25LibWeb: Split LengthStyleValue out of StyleValue.{h,cpp}Sam Atkins
2023-03-15LibJS+LibWeb: Wrap raw JS::Cell*/& fields in GCPtr/NonnullGCPtrMatthew Olsson
2023-03-13LibWeb: Escape HTML text fragments with multi-byte code point awarenessTimothy Flynn
2023-03-10Everywhere: Rename equals_ignoring_case => equals_ignoring_ascii_caseAndreas Kling
2023-03-06Everywhere: Remove NonnullRefPtr.h includesAndreas Kling
2023-03-06LibWeb: Fix a few const-ness issuesMatthew Olsson
2023-02-22LibWeb: Make factory method of DOM::ElementFactory fallibleKenneth Myhra
2023-02-19LibTextCodec+Everywhere: Port Decoders to new StringsSam Atkins
2023-02-19LibTextCodec+Everywhere: Return Optional<Decoder&> from `decoder_for()`Sam Atkins
2023-02-18LibWeb: Make factory methods of DOM::Event fallibleKenneth Myhra
2023-02-18LibWeb: Make factory methods of DOM::Document fallibleKenneth Myhra
2023-02-18LibWeb: Make factory method of DOM::Attr fallibleKenneth Myhra
2023-01-29LibJS+Everywhere: Propagate Cell::initialize errors from Heap::allocateTimothy Flynn
2023-01-27AK: Remove StringBuilder::build() in favor of to_deprecated_string()Linus Groh
2023-01-09AK+Everywhere: Rename FlyString to DeprecatedFlyStringTimothy Flynn
2023-01-09LibWeb: Only log HTML parser errors when HTML_PARSER_DEBUG is enabledAndreas Kling
2022-12-15LibJS: Convert Heap::allocate{,_without_realm}() to NonnullGCPtrLinus Groh
2022-12-15LibJS: Add make_handle({Nonnull,}GCPtr<T>) overloadsLinus Groh
2022-12-10LibWeb: Check HTML parser position is equal to or after insertion pointLuke Wilde
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-11-29LibWeb: Remove outdated FIXME regarding application cache selectionTimothy Flynn
2022-11-21LibWeb: Remove unused should_invalidate_styles_on_attribute_changes()Baitinq
2022-11-21LibWeb: Update the HTML parser part that deals with text in <script>Andreas Kling
2022-11-21LibWeb: Rename HTMLScriptElement "non-blocking" to "force async"Andreas Kling
2022-11-19Everywhere: Remove unnecessary mutable attributes from lambdasMacDue
2022-11-16LibWeb: Adjust `foreignobject` to `foreignObject` in HTML parserAndreas Kling
2022-11-05LibWeb: Make ON_WHITESPACE less heavy in HTML tokenizerAndreas Kling
2022-10-31LibWeb: Handle currently ignored `WebIDL::ExceptionOr<T>`sLinus Groh
2022-10-29LibWeb: Annotate and simplify the HTML fragment parsing algorithmAndreas Kling
2022-10-20LibWeb: Make the HTMLParser GC-allocatedAndreas Kling
2022-10-10LibWeb: Put HTML parser encoding sniffing debug logging behind a flagAndreas Kling
2022-10-05LibWeb: Rename HighResolutionTime/{CoarsenTime => TimeOrigin}.cpp/hLinus Groh
2022-10-05LibWeb: Move unsafe_shared_current_time() to HighResolutionTimeLinus Groh
2022-10-04LibWeb: Store HTML tag name token data as FlyString while parsingAndreas Kling
2022-10-02LibWeb: Replace incorrect uses of AK::is_ascii_space()Linus Groh
2022-10-01LibWeb: Remove unecessary dependence on Window from HTML classesAndrew Kaster
2022-09-23LibWeb: Set HTMLParser::m_scripting_enabled as according to the specLuke Wilde
2022-09-21LibWeb: Save begin/end timestamps for load and DOMContentLoaded eventsAndreas Kling
2022-09-20LibWeb: Implement aborting the HTML parserAndreas Kling
2022-09-18LibWeb: Add missing includesBen Wiederhake