1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00
serenity/Libraries/LibWeb/Parser
Andreas Kling fdfda6dec2 AK: Make string-to-number conversion helpers return Optional
Get rid of the weird old signature:

- int StringType::to_int(bool& ok) const

And replace it with sensible new signature:

- Optional<int> StringType::to_int() const
2020-06-12 21:28:55 +02:00
..
CSSParser.cpp LibWeb: Whine about unrecognized CSS properties in debug log 2020-06-12 14:15:55 +02:00
CSSParser.h AK: Stop allowing implicit downcast with RefPtr and NonnullRefPtr 2020-04-05 11:19:00 +02:00
Entities.cpp LibWeb: Fix parser interpreting "&quot;" as "&quot" 2020-06-10 10:34:28 +02:00
Entities.h LibWeb: Support named character references (e.g "&amp;") 2020-05-28 11:44:19 +02:00
HTMLDocumentParser.cpp LibWeb: Use HTML::TagNames globals in the new HTML parser 2020-06-07 23:53:16 +02:00
HTMLDocumentParser.h LibWeb: Buffer text node character insertions in the new parser 2020-06-03 21:53:08 +02:00
HTMLParser.cpp AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
HTMLParser.h LibWeb: Handle iso-8859-1 web content a little bit better 2020-05-03 23:01:58 +02:00
HTMLToken.cpp LibWeb: More work on the HTML parser and tokenizer 2020-05-24 23:54:22 +02:00
HTMLToken.h LibWeb: Make the new HTML parser parse input as UTF-8 2020-06-04 21:12:17 +02:00
HTMLTokenizer.cpp LibWeb: Fix tokenizer swallowing an extra token after a named entity 2020-06-07 19:09:03 +02:00
HTMLTokenizer.h LibWeb: Unbreak character reference and DOCTYPE parsing post-UTF-8 2020-06-04 22:09:36 +02:00
ListOfActiveFormattingElements.cpp LibWeb: Implement more table support in the new HTML parser 2020-05-28 00:27:46 +02:00
ListOfActiveFormattingElements.h LibWeb: Implement more table support in the new HTML parser 2020-05-28 00:27:46 +02:00
StackOfOpenElements.cpp LibWeb: Support parsing "select" elements (outside of tables) 2020-05-30 19:58:52 +02:00
StackOfOpenElements.h LibWeb: Support parsing "select" elements (outside of tables) 2020-05-30 19:58:52 +02:00