123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2020-2021, the SerenityOS developers.
- * Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
- * Copyright (c) 2021, Tobias Christiansen <tobyase@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/CharacterTypes.h>
- #include <AK/Debug.h>
- #include <AK/NonnullRefPtrVector.h>
- #include <AK/SourceLocation.h>
- #include <LibWeb/CSS/CSSImportRule.h>
- #include <LibWeb/CSS/CSSMediaRule.h>
- #include <LibWeb/CSS/CSSStyleDeclaration.h>
- #include <LibWeb/CSS/CSSStyleRule.h>
- #include <LibWeb/CSS/CSSStyleSheet.h>
- #include <LibWeb/CSS/CSSSupportsRule.h>
- #include <LibWeb/CSS/Parser/DeclarationOrAtRule.h>
- #include <LibWeb/CSS/Parser/Parser.h>
- #include <LibWeb/CSS/Parser/StyleBlockRule.h>
- #include <LibWeb/CSS/Parser/StyleComponentValueRule.h>
- #include <LibWeb/CSS/Parser/StyleFunctionRule.h>
- #include <LibWeb/CSS/Parser/StyleRule.h>
- #include <LibWeb/CSS/Selector.h>
- #include <LibWeb/DOM/Document.h>
- #include <LibWeb/Dump.h>
- static void log_parse_error(const SourceLocation& location = SourceLocation::current())
- {
- dbgln_if(CSS_PARSER_DEBUG, "Parse error (CSS) {}", location);
- }
- namespace Web::CSS {
- ParsingContext::ParsingContext(DOM::Document const& document)
- : m_document(&document)
- {
- }
- ParsingContext::ParsingContext(DOM::ParentNode& parent_node)
- : m_document(&parent_node.document())
- {
- }
- bool ParsingContext::in_quirks_mode() const
- {
- return m_document ? m_document->in_quirks_mode() : false;
- }
- AK::URL ParsingContext::complete_url(String const& addr) const
- {
- return m_document ? m_document->url().complete_url(addr) : AK::URL::create_with_url_or_path(addr);
- }
- template<typename T>
- TokenStream<T>::TokenStream(Vector<T> const& tokens)
- : m_tokens(tokens)
- , m_eof(make_eof())
- {
- }
- template<typename T>
- TokenStream<T>::~TokenStream()
- {
- }
- template<typename T>
- bool TokenStream<T>::has_next_token()
- {
- return (size_t)(m_iterator_offset + 1) < m_tokens.size();
- }
- template<typename T>
- T const& TokenStream<T>::peek_token(int offset)
- {
- if (!has_next_token())
- return m_eof;
- return m_tokens.at(m_iterator_offset + offset + 1);
- }
- template<typename T>
- T const& TokenStream<T>::next_token()
- {
- if (!has_next_token())
- return m_eof;
- ++m_iterator_offset;
- return m_tokens.at(m_iterator_offset);
- }
- template<typename T>
- T const& TokenStream<T>::current_token()
- {
- if ((size_t)m_iterator_offset >= m_tokens.size())
- return m_eof;
- return m_tokens.at(m_iterator_offset);
- }
- template<typename T>
- void TokenStream<T>::reconsume_current_input_token()
- {
- if (m_iterator_offset >= 0)
- --m_iterator_offset;
- }
- template<typename T>
- void TokenStream<T>::rewind_to_position(int position)
- {
- VERIFY(position <= m_iterator_offset);
- m_iterator_offset = position;
- }
- template<typename T>
- void TokenStream<T>::skip_whitespace()
- {
- while (peek_token().is(Token::Type::Whitespace))
- next_token();
- }
- template<>
- Token TokenStream<Token>::make_eof()
- {
- return Tokenizer::create_eof_token();
- }
- template<>
- StyleComponentValueRule TokenStream<StyleComponentValueRule>::make_eof()
- {
- return StyleComponentValueRule(Tokenizer::create_eof_token());
- }
- template<typename T>
- void TokenStream<T>::dump_all_tokens()
- {
- dbgln("Dumping all tokens:");
- for (size_t i = 0; i < m_tokens.size(); ++i) {
- auto& token = m_tokens[i];
- if ((i - 1) == (size_t)m_iterator_offset)
- dbgln("-> {}", token.to_debug_string());
- else
- dbgln(" {}", token.to_debug_string());
- }
- }
- Parser::Parser(ParsingContext const& context, StringView const& input, String const& encoding)
- : m_context(context)
- , m_tokenizer(input, encoding)
- , m_tokens(m_tokenizer.parse())
- , m_token_stream(TokenStream(m_tokens))
- {
- }
- Parser::~Parser()
- {
- }
- NonnullRefPtr<CSSStyleSheet> Parser::parse_as_stylesheet()
- {
- return parse_a_stylesheet(m_token_stream);
- }
- template<typename T>
- NonnullRefPtr<CSSStyleSheet> Parser::parse_a_stylesheet(TokenStream<T>& tokens)
- {
- auto parser_rules = consume_a_list_of_rules(tokens, true);
- NonnullRefPtrVector<CSSRule> rules;
- for (auto& raw_rule : parser_rules) {
- auto rule = convert_to_rule(raw_rule);
- if (rule)
- rules.append(*rule);
- }
- auto stylesheet = CSSStyleSheet::create(rules);
- if constexpr (CSS_PARSER_DEBUG) {
- dump_sheet(stylesheet);
- }
- return stylesheet;
- }
- Optional<SelectorList> Parser::parse_as_selector()
- {
- auto selector_list = parse_a_selector(m_token_stream);
- if (!selector_list.is_error())
- return selector_list.release_value();
- return {};
- }
- template<typename T>
- Result<SelectorList, Parser::ParsingResult> Parser::parse_a_selector(TokenStream<T>& tokens)
- {
- return parse_a_selector_list(tokens);
- }
- Optional<SelectorList> Parser::parse_as_relative_selector()
- {
- auto selector_list = parse_a_relative_selector(m_token_stream);
- if (!selector_list.is_error())
- return selector_list.release_value();
- return {};
- }
- template<typename T>
- Result<SelectorList, Parser::ParsingResult> Parser::parse_a_relative_selector(TokenStream<T>& tokens)
- {
- return parse_a_relative_selector_list(tokens);
- }
- template<typename T>
- Result<SelectorList, Parser::ParsingResult> Parser::parse_a_selector_list(TokenStream<T>& tokens)
- {
- auto comma_separated_lists = parse_a_comma_separated_list_of_component_values(tokens);
- NonnullRefPtrVector<Selector> selectors;
- for (auto& selector_parts : comma_separated_lists) {
- auto stream = TokenStream(selector_parts);
- auto selector = parse_complex_selector(stream, false);
- if (selector.is_error())
- return selector.error();
- selectors.append(selector.release_value());
- }
- if (selectors.is_empty())
- return ParsingResult::SyntaxError;
- return selectors;
- }
- template<typename T>
- Result<SelectorList, Parser::ParsingResult> Parser::parse_a_relative_selector_list(TokenStream<T>& tokens)
- {
- auto comma_separated_lists = parse_a_comma_separated_list_of_component_values(tokens);
- NonnullRefPtrVector<Selector> selectors;
- for (auto& selector_parts : comma_separated_lists) {
- auto stream = TokenStream(selector_parts);
- auto selector = parse_complex_selector(stream, true);
- if (selector.is_error())
- return selector.error();
- selectors.append(selector.release_value());
- }
- if (selectors.is_empty())
- return ParsingResult::SyntaxError;
- return selectors;
- }
- Result<NonnullRefPtr<Selector>, Parser::ParsingResult> Parser::parse_complex_selector(TokenStream<StyleComponentValueRule>& tokens, bool allow_starting_combinator)
- {
- Vector<Selector::CompoundSelector> compound_selectors;
- auto first_selector = parse_compound_selector(tokens);
- if (first_selector.is_error())
- return first_selector.error();
- if (!allow_starting_combinator) {
- if (first_selector.value().combinator != Selector::Combinator::Descendant)
- return ParsingResult::SyntaxError;
- first_selector.value().combinator = Selector::Combinator::None;
- }
- compound_selectors.append(first_selector.value());
- while (tokens.has_next_token()) {
- auto compound_selector = parse_compound_selector(tokens);
- if (compound_selector.is_error()) {
- if (compound_selector.error() == ParsingResult::Done)
- break;
- else
- return compound_selector.error();
- }
- compound_selectors.append(compound_selector.value());
- }
- if (compound_selectors.is_empty())
- return ParsingResult::SyntaxError;
- return Selector::create(move(compound_selectors));
- }
- Result<Selector::CompoundSelector, Parser::ParsingResult> Parser::parse_compound_selector(TokenStream<StyleComponentValueRule>& tokens)
- {
- tokens.skip_whitespace();
- auto combinator = parse_selector_combinator(tokens).value_or(Selector::Combinator::Descendant);
- tokens.skip_whitespace();
- Vector<Selector::SimpleSelector> simple_selectors;
- while (tokens.has_next_token()) {
- auto component = parse_simple_selector(tokens);
- if (component.is_error()) {
- if (component.error() == ParsingResult::Done)
- break;
- else
- return component.error();
- }
- simple_selectors.append(component.value());
- }
- if (simple_selectors.is_empty())
- return ParsingResult::Done;
- return Selector::CompoundSelector { combinator, move(simple_selectors) };
- }
- Optional<Selector::Combinator> Parser::parse_selector_combinator(TokenStream<StyleComponentValueRule>& tokens)
- {
- auto& current_value = tokens.next_token();
- if (current_value.is(Token::Type::Delim)) {
- auto delim = current_value.token().delim();
- if (delim == ">"sv) {
- return Selector::Combinator::ImmediateChild;
- } else if (delim == "+"sv) {
- return Selector::Combinator::NextSibling;
- } else if (delim == "~"sv) {
- return Selector::Combinator::SubsequentSibling;
- } else if (delim == "|"sv) {
- auto& next = tokens.peek_token();
- if (next.is(Token::Type::EndOfFile))
- return {};
- if (next.is(Token::Type::Delim) && next.token().delim() == "|"sv) {
- tokens.next_token();
- return Selector::Combinator::Column;
- }
- }
- }
- tokens.reconsume_current_input_token();
- return {};
- }
- Result<Selector::SimpleSelector, Parser::ParsingResult> Parser::parse_simple_selector(TokenStream<StyleComponentValueRule>& tokens)
- {
- auto peek_token_ends_selector = [&]() -> bool {
- auto& value = tokens.peek_token();
- return (value.is(Token::Type::EndOfFile) || value.is(Token::Type::Whitespace) || value.is(Token::Type::Comma));
- };
- if (peek_token_ends_selector())
- return ParsingResult::Done;
- auto& first_value = tokens.next_token();
- if (first_value.is(Token::Type::Delim) && first_value.token().delim() == "*"sv) {
- return Selector::SimpleSelector {
- .type = Selector::SimpleSelector::Type::Universal
- };
- } else if (first_value.is(Token::Type::Hash)) {
- if (first_value.token().hash_type() != Token::HashType::Id) {
- dbgln_if(CSS_PARSER_DEBUG, "Selector contains hash token that is not an id: {}", first_value.to_debug_string());
- return ParsingResult::SyntaxError;
- }
- return Selector::SimpleSelector {
- .type = Selector::SimpleSelector::Type::Id,
- .value = first_value.token().hash_value()
- };
- } else if (first_value.is(Token::Type::Delim) && first_value.token().delim() == "."sv) {
- if (peek_token_ends_selector())
- return ParsingResult::SyntaxError;
- auto& class_name_value = tokens.next_token();
- if (!class_name_value.is(Token::Type::Ident)) {
- dbgln_if(CSS_PARSER_DEBUG, "Expected an ident after '.', got: {}", class_name_value.to_debug_string());
- return ParsingResult::SyntaxError;
- }
- return Selector::SimpleSelector {
- .type = Selector::SimpleSelector::Type::Class,
- .value = class_name_value.token().ident()
- };
- } else if (first_value.is(Token::Type::Ident)) {
- return Selector::SimpleSelector {
- .type = Selector::SimpleSelector::Type::TagName,
- .value = first_value.token().ident()
- };
- } else if (first_value.is_block() && first_value.block().is_square()) {
- auto attribute_tokens = TokenStream { first_value.block().values() };
- attribute_tokens.skip_whitespace();
- if (!attribute_tokens.has_next_token()) {
- dbgln_if(CSS_PARSER_DEBUG, "CSS attribute selector is empty!");
- return ParsingResult::SyntaxError;
- }
- // FIXME: Handle namespace prefix for attribute name.
- auto& attribute_part = attribute_tokens.next_token();
- if (!attribute_part.is(Token::Type::Ident)) {
- dbgln_if(CSS_PARSER_DEBUG, "Expected ident for attribute name, got: '{}'", attribute_part.to_debug_string());
- return ParsingResult::SyntaxError;
- }
- Selector::SimpleSelector simple_selector {
- .type = Selector::SimpleSelector::Type::Attribute,
- .attribute = {
- .match_type = Selector::SimpleSelector::Attribute::MatchType::HasAttribute,
- // FIXME: Case-sensitivity is defined by the document language.
- // HTML is insensitive with attribute names, and our code generally assumes
- // they are converted to lowercase, so we do that here too. If we want to be
- // correct with XML later, we'll need to keep the original case and then do
- // a case-insensitive compare later.
- .name = attribute_part.token().ident().to_lowercase_string(),
- }
- };
- attribute_tokens.skip_whitespace();
- if (!attribute_tokens.has_next_token())
- return simple_selector;
- auto& delim_part = attribute_tokens.next_token();
- if (!delim_part.is(Token::Type::Delim)) {
- dbgln_if(CSS_PARSER_DEBUG, "Expected a delim for attribute comparison, got: '{}'", delim_part.to_debug_string());
- return ParsingResult::SyntaxError;
- }
- if (delim_part.token().delim() == "="sv) {
- simple_selector.attribute.match_type = Selector::SimpleSelector::Attribute::MatchType::ExactValueMatch;
- } else {
- if (!attribute_tokens.has_next_token()) {
- dbgln_if(CSS_PARSER_DEBUG, "Attribute selector ended part way through a match type.");
- return ParsingResult::SyntaxError;
- }
- auto& delim_second_part = attribute_tokens.next_token();
- if (!(delim_second_part.is(Token::Type::Delim) && delim_second_part.token().delim() == "=")) {
- dbgln_if(CSS_PARSER_DEBUG, "Expected a double delim for attribute comparison, got: '{}{}'", delim_part.to_debug_string(), delim_second_part.to_debug_string());
- return ParsingResult::SyntaxError;
- }
- if (delim_part.token().delim() == "~"sv) {
- simple_selector.attribute.match_type = Selector::SimpleSelector::Attribute::MatchType::ContainsWord;
- } else if (delim_part.token().delim() == "*"sv) {
- simple_selector.attribute.match_type = Selector::SimpleSelector::Attribute::MatchType::ContainsString;
- } else if (delim_part.token().delim() == "|"sv) {
- simple_selector.attribute.match_type = Selector::SimpleSelector::Attribute::MatchType::StartsWithSegment;
- } else if (delim_part.token().delim() == "^"sv) {
- simple_selector.attribute.match_type = Selector::SimpleSelector::Attribute::MatchType::StartsWithString;
- } else if (delim_part.token().delim() == "$"sv) {
- simple_selector.attribute.match_type = Selector::SimpleSelector::Attribute::MatchType::EndsWithString;
- } else {
- attribute_tokens.reconsume_current_input_token();
- }
- }
- attribute_tokens.skip_whitespace();
- if (!attribute_tokens.has_next_token()) {
- dbgln_if(CSS_PARSER_DEBUG, "Attribute selector ended without a value to match.");
- return ParsingResult::SyntaxError;
- }
- auto& value_part = attribute_tokens.next_token();
- if (!value_part.is(Token::Type::Ident) && !value_part.is(Token::Type::String)) {
- dbgln_if(CSS_PARSER_DEBUG, "Expected a string or ident for the value to match attribute against, got: '{}'", value_part.to_debug_string());
- return ParsingResult::SyntaxError;
- }
- simple_selector.attribute.value = value_part.token().is(Token::Type::Ident) ? value_part.token().ident() : value_part.token().string();
- attribute_tokens.skip_whitespace();
- // FIXME: Handle case-sensitivity suffixes. https://www.w3.org/TR/selectors-4/#attribute-case
- return simple_selector;
- } else if (first_value.is(Token::Type::Colon)) {
- if (peek_token_ends_selector())
- return ParsingResult::SyntaxError;
- bool is_pseudo = false;
- if (tokens.peek_token().is(Token::Type::Colon)) {
- is_pseudo = true;
- tokens.next_token();
- if (peek_token_ends_selector())
- return ParsingResult::SyntaxError;
- }
- if (is_pseudo) {
- Selector::SimpleSelector simple_selector {
- .type = Selector::SimpleSelector::Type::PseudoElement
- };
- auto& name_token = tokens.next_token();
- if (!name_token.is(Token::Type::Ident)) {
- dbgln_if(CSS_PARSER_DEBUG, "Expected an ident for pseudo-element, got: '{}'", name_token.to_debug_string());
- return ParsingResult::SyntaxError;
- }
- auto pseudo_name = name_token.token().ident();
- if (has_ignored_vendor_prefix(pseudo_name))
- return ParsingResult::IncludesIgnoredVendorPrefix;
- if (pseudo_name.equals_ignoring_case("after")) {
- simple_selector.pseudo_element = Selector::SimpleSelector::PseudoElement::After;
- } else if (pseudo_name.equals_ignoring_case("before")) {
- simple_selector.pseudo_element = Selector::SimpleSelector::PseudoElement::Before;
- } else if (pseudo_name.equals_ignoring_case("first-letter")) {
- simple_selector.pseudo_element = Selector::SimpleSelector::PseudoElement::FirstLetter;
- } else if (pseudo_name.equals_ignoring_case("first-line")) {
- simple_selector.pseudo_element = Selector::SimpleSelector::PseudoElement::FirstLine;
- } else {
- dbgln("Unrecognized pseudo-element: '::{}'", pseudo_name);
- return ParsingResult::SyntaxError;
- }
- return simple_selector;
- }
- if (peek_token_ends_selector())
- return ParsingResult::SyntaxError;
- auto& pseudo_class_token = tokens.next_token();
- Selector::SimpleSelector simple_selector {
- .type = Selector::SimpleSelector::Type::PseudoClass
- };
- if (pseudo_class_token.is(Token::Type::Ident)) {
- auto pseudo_name = pseudo_class_token.token().ident();
- if (has_ignored_vendor_prefix(pseudo_name))
- return ParsingResult::IncludesIgnoredVendorPrefix;
- if (pseudo_name.equals_ignoring_case("active")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Active;
- } else if (pseudo_name.equals_ignoring_case("checked")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Checked;
- } else if (pseudo_name.equals_ignoring_case("disabled")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Disabled;
- } else if (pseudo_name.equals_ignoring_case("empty")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Empty;
- } else if (pseudo_name.equals_ignoring_case("enabled")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Enabled;
- } else if (pseudo_name.equals_ignoring_case("first-child")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::FirstChild;
- } else if (pseudo_name.equals_ignoring_case("first-of-type")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::FirstOfType;
- } else if (pseudo_name.equals_ignoring_case("focus")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Focus;
- } else if (pseudo_name.equals_ignoring_case("hover")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Hover;
- } else if (pseudo_name.equals_ignoring_case("last-child")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::LastChild;
- } else if (pseudo_name.equals_ignoring_case("last-of-type")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::LastOfType;
- } else if (pseudo_name.equals_ignoring_case("link")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Link;
- } else if (pseudo_name.equals_ignoring_case("only-child")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::OnlyChild;
- } else if (pseudo_name.equals_ignoring_case("root")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Root;
- } else if (pseudo_name.equals_ignoring_case("visited")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Visited;
- } else if (pseudo_name.equals_ignoring_case("after")) {
- // Single-colon syntax allowed for compatibility. https://www.w3.org/TR/selectors/#pseudo-element-syntax
- simple_selector.type = Selector::SimpleSelector::Type::PseudoElement;
- simple_selector.pseudo_element = Selector::SimpleSelector::PseudoElement::After;
- } else if (pseudo_name.equals_ignoring_case("before")) {
- // See :after
- simple_selector.type = Selector::SimpleSelector::Type::PseudoElement;
- simple_selector.pseudo_element = Selector::SimpleSelector::PseudoElement::Before;
- } else if (pseudo_name.equals_ignoring_case("first-letter")) {
- // See :after
- simple_selector.type = Selector::SimpleSelector::Type::PseudoElement;
- simple_selector.pseudo_element = Selector::SimpleSelector::PseudoElement::FirstLetter;
- } else if (pseudo_name.equals_ignoring_case("first-line")) {
- // See :after
- simple_selector.type = Selector::SimpleSelector::Type::PseudoElement;
- simple_selector.pseudo_element = Selector::SimpleSelector::PseudoElement::FirstLine;
- } else {
- dbgln("Unrecognized pseudo-class: ':{}'", pseudo_name);
- return ParsingResult::SyntaxError;
- }
- return simple_selector;
- } else if (pseudo_class_token.is_function()) {
- auto& pseudo_function = pseudo_class_token.function();
- if (pseudo_function.name().equals_ignoring_case("not")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::Not;
- auto function_token_stream = TokenStream(pseudo_function.values());
- auto not_selector = parse_a_selector(function_token_stream);
- if (not_selector.is_error()) {
- dbgln_if(CSS_PARSER_DEBUG, "Invalid selector in :not() clause");
- return ParsingResult::SyntaxError;
- }
- simple_selector.pseudo_class.not_selector = not_selector.release_value();
- } else if (pseudo_function.name().equals_ignoring_case("nth-child")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::NthChild;
- auto function_values = TokenStream<StyleComponentValueRule>(pseudo_function.values());
- auto nth_child_pattern = parse_a_n_plus_b_pattern(function_values);
- if (nth_child_pattern.has_value()) {
- simple_selector.pseudo_class.nth_child_pattern = nth_child_pattern.value();
- } else {
- dbgln_if(CSS_PARSER_DEBUG, "!!! Invalid nth-child format");
- return ParsingResult::SyntaxError;
- }
- } else if (pseudo_function.name().equals_ignoring_case("nth-last-child")) {
- simple_selector.pseudo_class.type = Selector::SimpleSelector::PseudoClass::Type::NthLastChild;
- auto function_values = TokenStream<StyleComponentValueRule>(pseudo_function.values());
- auto nth_child_pattern = parse_a_n_plus_b_pattern(function_values);
- if (nth_child_pattern.has_value()) {
- simple_selector.pseudo_class.nth_child_pattern = nth_child_pattern.value();
- } else {
- dbgln_if(CSS_PARSER_DEBUG, "!!! Invalid nth-child format");
- return ParsingResult::SyntaxError;
- }
- } else {
- dbgln("Unrecognized pseudo-class function: ':{}'()", pseudo_function.name());
- return ParsingResult::SyntaxError;
- }
- return simple_selector;
- } else {
- dbgln_if(CSS_PARSER_DEBUG, "Unexpected Block in pseudo-class name, expected a function or identifier. '{}'", pseudo_class_token.to_debug_string());
- return ParsingResult::SyntaxError;
- }
- }
- // Whitespace is not required between the compound-selector and a combinator.
- // So, if we see a combinator, return that this compound-selector is done, instead of a syntax error.
- if (first_value.is(Token::Type::Delim)) {
- auto delim = first_value.token().delim();
- if ((delim == ">"sv) || (delim == "+"sv) || (delim == "~"sv) || (delim == "|"sv)) {
- tokens.reconsume_current_input_token();
- return ParsingResult::Done;
- }
- }
- dbgln_if(CSS_PARSER_DEBUG, "!!! Invalid simple selector!");
- return ParsingResult::SyntaxError;
- }
- NonnullRefPtrVector<MediaQuery> Parser::parse_as_media_query_list()
- {
- return parse_a_media_query_list(m_token_stream);
- }
- template<typename T>
- NonnullRefPtrVector<MediaQuery> Parser::parse_a_media_query_list(TokenStream<T>& tokens)
- {
- // https://www.w3.org/TR/mediaqueries-4/#mq-list
- auto comma_separated_lists = parse_a_comma_separated_list_of_component_values(tokens);
- AK::NonnullRefPtrVector<MediaQuery> media_queries;
- for (auto& media_query_parts : comma_separated_lists) {
- auto stream = TokenStream(media_query_parts);
- media_queries.append(parse_media_query(stream));
- }
- return media_queries;
- }
- RefPtr<MediaQuery> Parser::parse_as_media_query()
- {
- // https://www.w3.org/TR/cssom-1/#parse-a-media-query
- auto media_query_list = parse_as_media_query_list();
- if (media_query_list.is_empty())
- return MediaQuery::create_not_all();
- if (media_query_list.size() == 1)
- return media_query_list.first();
- return nullptr;
- }
- NonnullRefPtr<MediaQuery> Parser::parse_media_query(TokenStream<StyleComponentValueRule>& tokens)
- {
- // Returns whether to negate the query
- auto consume_initial_modifier = [](auto& tokens) -> Optional<bool> {
- auto& token = tokens.next_token();
- if (!token.is(Token::Type::Ident)) {
- tokens.reconsume_current_input_token();
- return {};
- }
- auto ident = token.token().ident();
- if (ident.equals_ignoring_case("not")) {
- return true;
- } else if (ident.equals_ignoring_case("only")) {
- return false;
- }
- tokens.reconsume_current_input_token();
- return {};
- };
- auto invalid_media_query = [&]() {
- // "A media query that does not match the grammar in the previous section must be replaced by `not all`
- // during parsing." - https://www.w3.org/TR/mediaqueries-5/#error-handling
- if constexpr (CSS_PARSER_DEBUG) {
- dbgln("Invalid media query:");
- tokens.dump_all_tokens();
- }
- return MediaQuery::create_not_all();
- };
- auto media_query = MediaQuery::create();
- tokens.skip_whitespace();
- // Only `<media-condition>`
- if (auto media_condition = consume_media_condition(tokens)) {
- tokens.skip_whitespace();
- if (tokens.has_next_token())
- return invalid_media_query();
- media_query->m_media_condition = move(media_condition);
- return media_query;
- }
- // Optional `"only" | "not"`
- if (auto modifier = consume_initial_modifier(tokens); modifier.has_value()) {
- media_query->m_negated = modifier.value();
- tokens.skip_whitespace();
- }
- // `<media-type>`
- if (auto media_type = consume_media_type(tokens); media_type.has_value()) {
- media_query->m_media_type = media_type.value();
- tokens.skip_whitespace();
- } else {
- return invalid_media_query();
- }
- if (!tokens.has_next_token())
- return media_query;
- // Optional "and <media-condition>"
- if (auto maybe_and = tokens.next_token(); maybe_and.is(Token::Type::Ident) && maybe_and.token().ident().equals_ignoring_case("and")) {
- if (auto media_condition = consume_media_condition(tokens)) {
- tokens.skip_whitespace();
- if (tokens.has_next_token())
- return invalid_media_query();
- media_query->m_media_condition = move(media_condition);
- return media_query;
- }
- return invalid_media_query();
- }
- return invalid_media_query();
- }
- OwnPtr<MediaQuery::MediaCondition> Parser::consume_media_condition(TokenStream<StyleComponentValueRule>& tokens)
- {
- // "not <media-condition>"
- auto position = tokens.position();
- auto& first_token = tokens.peek_token();
- if (first_token.is(Token::Type::Ident) && first_token.token().ident().equals_ignoring_case("not"sv)) {
- tokens.next_token();
- auto condition = new MediaQuery::MediaCondition;
- condition->type = MediaQuery::MediaCondition::Type::Not;
- if (auto child_condition = consume_media_condition(tokens)) {
- condition->conditions.append(child_condition.release_nonnull());
- return adopt_own(*condition);
- }
- tokens.rewind_to_position(position);
- return {};
- }
- // "<media-condition> ([and | or] <media-condition>)*"
- NonnullOwnPtrVector<MediaQuery::MediaCondition> child_conditions;
- Optional<MediaQuery::MediaCondition::Type> condition_type {};
- auto as_condition_type = [](auto& token) -> Optional<MediaQuery::MediaCondition::Type> {
- if (!token.is(Token::Type::Ident))
- return {};
- auto ident = token.token().ident();
- if (ident.equals_ignoring_case("and"))
- return MediaQuery::MediaCondition::Type::And;
- if (ident.equals_ignoring_case("or"))
- return MediaQuery::MediaCondition::Type::Or;
- return {};
- };
- bool is_invalid = false;
- tokens.skip_whitespace();
- while (tokens.has_next_token()) {
- if (!child_conditions.is_empty()) {
- // Expect an "and" or "or" here
- auto maybe_combination = as_condition_type(tokens.next_token());
- if (!maybe_combination.has_value()) {
- is_invalid = true;
- break;
- }
- if (!condition_type.has_value()) {
- condition_type = maybe_combination.value();
- } else if (maybe_combination != condition_type) {
- is_invalid = true;
- break;
- }
- }
- tokens.skip_whitespace();
- if (auto child_feature = consume_media_feature(tokens); child_feature.has_value()) {
- auto child = new MediaQuery::MediaCondition;
- child->type = MediaQuery::MediaCondition::Type::Single;
- child->feature = child_feature.value();
- child_conditions.append(adopt_own(*child));
- } else {
- auto& token = tokens.next_token();
- if (!token.is_block() || !token.block().is_paren()) {
- is_invalid = true;
- break;
- }
- auto block_tokens = TokenStream { token.block().values() };
- if (auto child = consume_media_condition(block_tokens)) {
- child_conditions.append(child.release_nonnull());
- } else {
- is_invalid = true;
- break;
- }
- }
- tokens.skip_whitespace();
- }
- if (!is_invalid && !child_conditions.is_empty()) {
- if (child_conditions.size() == 1)
- return move(child_conditions.ptr_at(0));
- auto condition = new MediaQuery::MediaCondition;
- condition->type = condition_type.value();
- condition->conditions = move(child_conditions);
- return adopt_own(*condition);
- }
- // "<media-feature>"
- tokens.rewind_to_position(position);
- if (auto feature = consume_media_feature(tokens); feature.has_value()) {
- auto condition = new MediaQuery::MediaCondition;
- condition->type = MediaQuery::MediaCondition::Type::Single;
- condition->feature = feature.value();
- return adopt_own(*condition);
- }
- tokens.rewind_to_position(position);
- return {};
- }
- Optional<MediaQuery::MediaFeature> Parser::consume_media_feature(TokenStream<StyleComponentValueRule>& outer_tokens)
- {
- outer_tokens.skip_whitespace();
- auto invalid_feature = [&]() -> Optional<MediaQuery::MediaFeature> {
- outer_tokens.reconsume_current_input_token();
- return {};
- };
- auto& block_token = outer_tokens.next_token();
- if (block_token.is_block() && block_token.block().is_paren()) {
- TokenStream tokens { block_token.block().values() };
- tokens.skip_whitespace();
- auto& name_token = tokens.next_token();
- // FIXME: Range syntax allows a value to come before the name
- // https://www.w3.org/TR/mediaqueries-4/#mq-range-context
- if (!name_token.is(Token::Type::Ident))
- return invalid_feature();
- auto feature_name = name_token.token().ident();
- tokens.skip_whitespace();
- if (!tokens.has_next_token()) {
- return MediaQuery::MediaFeature {
- .type = MediaQuery::MediaFeature::Type::IsTrue,
- .name = feature_name,
- };
- }
- if (!tokens.next_token().is(Token::Type::Colon))
- return invalid_feature();
- tokens.skip_whitespace();
- auto value = parse_css_value(PropertyID::Custom, tokens);
- if (value.is_error())
- return invalid_feature();
- if (tokens.has_next_token())
- return invalid_feature();
- if (feature_name.starts_with("min-", CaseSensitivity::CaseInsensitive)) {
- return MediaQuery::MediaFeature {
- .type = MediaQuery::MediaFeature::Type::MinValue,
- .name = feature_name.substring_view(4),
- .value = value.release_value(),
- };
- } else if (feature_name.starts_with("max-", CaseSensitivity::CaseInsensitive)) {
- return MediaQuery::MediaFeature {
- .type = MediaQuery::MediaFeature::Type::MaxValue,
- .name = feature_name.substring_view(4),
- .value = value.release_value(),
- };
- }
- return MediaQuery::MediaFeature {
- .type = MediaQuery::MediaFeature::Type::ExactValue,
- .name = feature_name,
- .value = value.release_value(),
- };
- }
- return invalid_feature();
- }
- Optional<MediaQuery::MediaType> Parser::consume_media_type(TokenStream<StyleComponentValueRule>& tokens)
- {
- auto& token = tokens.next_token();
- if (!token.is(Token::Type::Ident)) {
- tokens.reconsume_current_input_token();
- return {};
- }
- auto ident = token.token().ident();
- if (ident.equals_ignoring_case("all")) {
- return MediaQuery::MediaType::All;
- } else if (ident.equals_ignoring_case("aural")) {
- return MediaQuery::MediaType::Aural;
- } else if (ident.equals_ignoring_case("braille")) {
- return MediaQuery::MediaType::Braille;
- } else if (ident.equals_ignoring_case("embossed")) {
- return MediaQuery::MediaType::Embossed;
- } else if (ident.equals_ignoring_case("handheld")) {
- return MediaQuery::MediaType::Handheld;
- } else if (ident.equals_ignoring_case("print")) {
- return MediaQuery::MediaType::Print;
- } else if (ident.equals_ignoring_case("projection")) {
- return MediaQuery::MediaType::Projection;
- } else if (ident.equals_ignoring_case("screen")) {
- return MediaQuery::MediaType::Screen;
- } else if (ident.equals_ignoring_case("speech")) {
- return MediaQuery::MediaType::Speech;
- } else if (ident.equals_ignoring_case("tty")) {
- return MediaQuery::MediaType::TTY;
- } else if (ident.equals_ignoring_case("tv")) {
- return MediaQuery::MediaType::TV;
- }
- tokens.reconsume_current_input_token();
- return {};
- }
- RefPtr<Supports> Parser::parse_as_supports()
- {
- return parse_a_supports(m_token_stream);
- }
- template<typename T>
- RefPtr<Supports> Parser::parse_a_supports(TokenStream<T>& tokens)
- {
- auto component_values = parse_a_list_of_component_values(tokens);
- TokenStream<StyleComponentValueRule> token_stream { component_values };
- auto maybe_condition = parse_supports_condition(token_stream);
- token_stream.skip_whitespace();
- if (maybe_condition && !token_stream.has_next_token())
- return Supports::create(maybe_condition.release_nonnull());
- return {};
- }
- OwnPtr<Supports::Condition> Parser::parse_supports_condition(TokenStream<StyleComponentValueRule>& tokens)
- {
- tokens.skip_whitespace();
- auto start_position = tokens.position();
- auto& peeked_token = tokens.peek_token();
- // `not <supports-in-parens>`
- if (peeked_token.is(Token::Type::Ident) && peeked_token.token().ident().equals_ignoring_case("not")) {
- tokens.next_token();
- tokens.skip_whitespace();
- auto child = parse_supports_in_parens(tokens);
- if (child.has_value()) {
- auto* condition = new Supports::Condition;
- condition->type = Supports::Condition::Type::Not;
- condition->children.append(child.release_value());
- return adopt_own(*condition);
- }
- tokens.rewind_to_position(start_position);
- return {};
- }
- // ` <supports-in-parens> [ and <supports-in-parens> ]*
- // | <supports-in-parens> [ or <supports-in-parens> ]*`
- Vector<Supports::InParens> children;
- Optional<Supports::Condition::Type> condition_type {};
- auto as_condition_type = [](auto& token) -> Optional<Supports::Condition::Type> {
- if (!token.is(Token::Type::Ident))
- return {};
- auto ident = token.token().ident();
- if (ident.equals_ignoring_case("and"))
- return Supports::Condition::Type::And;
- if (ident.equals_ignoring_case("or"))
- return Supports::Condition::Type::Or;
- return {};
- };
- bool is_invalid = false;
- while (tokens.has_next_token()) {
- if (!children.is_empty()) {
- // Expect `and` or `or` here
- auto maybe_combination = as_condition_type(tokens.next_token());
- if (!maybe_combination.has_value()) {
- is_invalid = true;
- break;
- }
- if (!condition_type.has_value()) {
- condition_type = maybe_combination.value();
- } else if (maybe_combination != condition_type) {
- is_invalid = true;
- break;
- }
- }
- tokens.skip_whitespace();
- if (auto in_parens = parse_supports_in_parens(tokens); in_parens.has_value()) {
- children.append(in_parens.release_value());
- } else {
- is_invalid = true;
- break;
- }
- tokens.skip_whitespace();
- }
- if (!is_invalid && !children.is_empty()) {
- auto* condition = new Supports::Condition;
- condition->type = condition_type.value_or(Supports::Condition::Type::Or);
- condition->children = move(children);
- return adopt_own(*condition);
- }
- tokens.rewind_to_position(start_position);
- return {};
- }
- Optional<Supports::InParens> Parser::parse_supports_in_parens(TokenStream<StyleComponentValueRule>& tokens)
- {
- tokens.skip_whitespace();
- auto start_position = tokens.position();
- auto& first_token = tokens.peek_token();
- // `( <supports-condition> )`
- if (first_token.is_block() && first_token.block().is_paren()) {
- tokens.next_token();
- tokens.skip_whitespace();
- TokenStream child_tokens { first_token.block().values() };
- if (auto condition = parse_supports_condition(child_tokens)) {
- if (child_tokens.has_next_token()) {
- tokens.rewind_to_position(start_position);
- return {};
- }
- return Supports::InParens {
- .value = { condition.release_nonnull() }
- };
- }
- tokens.rewind_to_position(start_position);
- }
- // `<supports-feature>`
- if (auto feature = parse_supports_feature(tokens); feature.has_value()) {
- return Supports::InParens {
- .value = { feature.release_value() }
- };
- }
- // `<general-enclosed>`
- if (auto general_enclosed = parse_general_enclosed(tokens); general_enclosed.has_value()) {
- return Supports::InParens {
- .value = Supports::GeneralEnclosed {}
- };
- }
- tokens.rewind_to_position(start_position);
- return {};
- }
- Optional<Supports::Feature> Parser::parse_supports_feature(TokenStream<StyleComponentValueRule>& tokens)
- {
- tokens.skip_whitespace();
- auto start_position = tokens.position();
- auto& first_token = tokens.next_token();
- // `<supports-decl>`
- if (first_token.is_block() && first_token.block().is_paren()) {
- TokenStream block_tokens { first_token.block().values() };
- if (auto declaration = consume_a_declaration(block_tokens); declaration.has_value()) {
- return Supports::Feature {
- .declaration = declaration.release_value()
- };
- }
- }
- tokens.rewind_to_position(start_position);
- return {};
- }
- Optional<Parser::GeneralEnclosed> Parser::parse_general_enclosed()
- {
- return parse_general_enclosed(m_token_stream);
- }
- template<typename T>
- Optional<Parser::GeneralEnclosed> Parser::parse_general_enclosed(TokenStream<T>&)
- {
- // FIXME: Actually parse this! https://www.w3.org/TR/mediaqueries-5/#typedef-general-enclosed
- return {};
- }
- NonnullRefPtrVector<StyleRule> Parser::consume_a_list_of_rules(bool top_level)
- {
- return consume_a_list_of_rules(m_token_stream, top_level);
- }
- template<typename T>
- NonnullRefPtrVector<StyleRule> Parser::consume_a_list_of_rules(TokenStream<T>& tokens, bool top_level)
- {
- NonnullRefPtrVector<StyleRule> rules;
- for (;;) {
- auto& token = tokens.next_token();
- if (token.is(Token::Type::Whitespace)) {
- continue;
- }
- if (token.is(Token::Type::EndOfFile)) {
- break;
- }
- if (token.is(Token::Type::CDO) || token.is(Token::Type::CDC)) {
- if (top_level) {
- continue;
- }
- tokens.reconsume_current_input_token();
- auto maybe_qualified = consume_a_qualified_rule(tokens);
- if (maybe_qualified) {
- rules.append(maybe_qualified.release_nonnull());
- }
- continue;
- }
- if (token.is(Token::Type::AtKeyword)) {
- tokens.reconsume_current_input_token();
- rules.append(consume_an_at_rule(tokens));
- continue;
- }
- tokens.reconsume_current_input_token();
- auto maybe_qualified = consume_a_qualified_rule(tokens);
- if (maybe_qualified) {
- rules.append(maybe_qualified.release_nonnull());
- }
- }
- return rules;
- }
- NonnullRefPtr<StyleRule> Parser::consume_an_at_rule()
- {
- return consume_an_at_rule(m_token_stream);
- }
- template<typename T>
- NonnullRefPtr<StyleRule> Parser::consume_an_at_rule(TokenStream<T>& tokens)
- {
- auto& name_ident = tokens.next_token();
- VERIFY(name_ident.is(Token::Type::AtKeyword));
- auto rule = make_ref_counted<StyleRule>(StyleRule::Type::At);
- rule->m_name = ((Token)name_ident).at_keyword();
- for (;;) {
- auto& token = tokens.next_token();
- if (token.is(Token::Type::Semicolon)) {
- return rule;
- }
- if (token.is(Token::Type::EndOfFile)) {
- log_parse_error();
- return rule;
- }
- if (token.is(Token::Type::OpenCurly)) {
- rule->m_block = consume_a_simple_block(tokens);
- return rule;
- }
- if constexpr (IsSame<T, StyleComponentValueRule>) {
- StyleComponentValueRule const& component_value = token;
- if (component_value.is_block() && component_value.block().is_curly()) {
- rule->m_block = component_value.block();
- return rule;
- }
- }
- tokens.reconsume_current_input_token();
- auto value = consume_a_component_value(tokens);
- rule->m_prelude.append(value);
- }
- }
- RefPtr<StyleRule> Parser::consume_a_qualified_rule()
- {
- return consume_a_qualified_rule(m_token_stream);
- }
- template<typename T>
- RefPtr<StyleRule> Parser::consume_a_qualified_rule(TokenStream<T>& tokens)
- {
- auto rule = make_ref_counted<StyleRule>(StyleRule::Type::Qualified);
- for (;;) {
- auto& token = tokens.next_token();
- if (token.is(Token::Type::EndOfFile)) {
- log_parse_error();
- return {};
- }
- if (token.is(Token::Type::OpenCurly)) {
- rule->m_block = consume_a_simple_block(tokens);
- return rule;
- }
- if constexpr (IsSame<T, StyleComponentValueRule>) {
- StyleComponentValueRule const& component_value = token;
- if (component_value.is_block() && component_value.block().is_curly()) {
- rule->m_block = component_value.block();
- return rule;
- }
- }
- tokens.reconsume_current_input_token();
- auto value = consume_a_component_value(tokens);
- rule->m_prelude.append(value);
- }
- return rule;
- }
- template<>
- StyleComponentValueRule Parser::consume_a_component_value(TokenStream<StyleComponentValueRule>& tokens)
- {
- return tokens.next_token();
- }
- template<typename T>
- StyleComponentValueRule Parser::consume_a_component_value(TokenStream<T>& tokens)
- {
- auto& token = tokens.next_token();
- if (token.is(Token::Type::OpenCurly) || token.is(Token::Type::OpenSquare) || token.is(Token::Type::OpenParen))
- return StyleComponentValueRule(consume_a_simple_block(tokens));
- if (token.is(Token::Type::Function))
- return StyleComponentValueRule(consume_a_function(tokens));
- return StyleComponentValueRule(token);
- }
- StyleComponentValueRule Parser::consume_a_component_value()
- {
- return consume_a_component_value(m_token_stream);
- }
- NonnullRefPtr<StyleBlockRule> Parser::consume_a_simple_block()
- {
- return consume_a_simple_block(m_token_stream);
- }
- template<typename T>
- NonnullRefPtr<StyleBlockRule> Parser::consume_a_simple_block(TokenStream<T>& tokens)
- {
- auto ending_token = ((Token)tokens.current_token()).mirror_variant();
- auto block = make_ref_counted<StyleBlockRule>();
- block->m_token = tokens.current_token();
- for (;;) {
- auto& token = tokens.next_token();
- if (token.is(ending_token)) {
- return block;
- }
- if (token.is(Token::Type::EndOfFile)) {
- log_parse_error();
- return block;
- }
- tokens.reconsume_current_input_token();
- auto value = consume_a_component_value(tokens);
- block->m_values.append(value);
- }
- }
- NonnullRefPtr<StyleFunctionRule> Parser::consume_a_function()
- {
- return consume_a_function(m_token_stream);
- }
- template<typename T>
- NonnullRefPtr<StyleFunctionRule> Parser::consume_a_function(TokenStream<T>& tokens)
- {
- auto name_ident = tokens.current_token();
- VERIFY(name_ident.is(Token::Type::Function));
- auto function = make_ref_counted<StyleFunctionRule>(((Token)name_ident).m_value.to_string());
- for (;;) {
- auto& token = tokens.next_token();
- if (token.is(Token::Type::CloseParen)) {
- return function;
- }
- if (token.is(Token::Type::EndOfFile)) {
- log_parse_error();
- return function;
- }
- tokens.reconsume_current_input_token();
- auto value = consume_a_component_value(tokens);
- function->m_values.append(value);
- }
- return function;
- }
- Optional<StyleDeclarationRule> Parser::consume_a_declaration()
- {
- return consume_a_declaration(m_token_stream);
- }
- // https://www.w3.org/TR/css-syntax-3/#consume-declaration
- template<typename T>
- Optional<StyleDeclarationRule> Parser::consume_a_declaration(TokenStream<T>& tokens)
- {
- // Note: This algorithm assumes that the next input token has already been checked to
- // be an <ident-token>.
- // To consume a declaration:
- // Consume the next input token.
- tokens.skip_whitespace();
- auto start_position = tokens.position();
- auto& token = tokens.next_token();
- if (!token.is(Token::Type::Ident)) {
- tokens.rewind_to_position(start_position);
- return {};
- }
- // Create a new declaration with its name set to the value of the current input token
- // and its value initially set to the empty list.
- StyleDeclarationRule declaration;
- declaration.m_name = ((Token)token).ident();
- // 1. While the next input token is a <whitespace-token>, consume the next input token.
- tokens.skip_whitespace();
- // 2. If the next input token is anything other than a <colon-token>, this is a parse error.
- // Return nothing.
- auto& maybe_colon = tokens.peek_token();
- if (!maybe_colon.is(Token::Type::Colon)) {
- log_parse_error();
- tokens.rewind_to_position(start_position);
- return {};
- }
- // Otherwise, consume the next input token.
- tokens.next_token();
- // 3. While the next input token is a <whitespace-token>, consume the next input token.
- tokens.skip_whitespace();
- // 4. As long as the next input token is anything other than an <EOF-token>, consume a
- // component value and append it to the declaration’s value.
- for (;;) {
- if (tokens.peek_token().is(Token::Type::EndOfFile)) {
- break;
- }
- declaration.m_values.append(consume_a_component_value(tokens));
- }
- // 5. If the last two non-<whitespace-token>s in the declaration’s value are a <delim-token>
- // with the value "!" followed by an <ident-token> with a value that is an ASCII case-insensitive
- // match for "important", remove them from the declaration’s value and set the declaration’s
- // important flag to true.
- if (declaration.m_values.size() >= 2) {
- // Walk backwards from the end until we find "important"
- Optional<size_t> important_index;
- for (size_t i = declaration.m_values.size() - 1; i > 0; i--) {
- auto value = declaration.m_values[i];
- if (value.is(Token::Type::Ident) && value.token().ident().equals_ignoring_case("important")) {
- important_index = i;
- break;
- }
- if (value.is(Token::Type::Whitespace))
- continue;
- break;
- }
- // Walk backwards from important until we find "!"
- if (important_index.has_value()) {
- Optional<size_t> bang_index;
- for (size_t i = important_index.value() - 1; i > 0; i--) {
- auto value = declaration.m_values[i];
- if (value.is(Token::Type::Delim) && value.token().delim() == "!"sv) {
- bang_index = i;
- break;
- }
- if (value.is(Token::Type::Whitespace))
- continue;
- break;
- }
- if (bang_index.has_value()) {
- declaration.m_values.remove(important_index.value());
- declaration.m_values.remove(bang_index.value());
- declaration.m_important = true;
- }
- }
- }
- // 6. While the last token in the declaration’s value is a <whitespace-token>, remove that token.
- while (!declaration.m_values.is_empty()) {
- auto maybe_whitespace = declaration.m_values.last();
- if (!(maybe_whitespace.is(Token::Type::Whitespace))) {
- break;
- }
- declaration.m_values.take_last();
- }
- // 7. Return the declaration.
- return declaration;
- }
- Vector<DeclarationOrAtRule> Parser::consume_a_list_of_declarations()
- {
- return consume_a_list_of_declarations(m_token_stream);
- }
- template<typename T>
- Vector<DeclarationOrAtRule> Parser::consume_a_list_of_declarations(TokenStream<T>& tokens)
- {
- Vector<DeclarationOrAtRule> list;
- for (;;) {
- auto& token = tokens.next_token();
- if (token.is(Token::Type::Whitespace) || token.is(Token::Type::Semicolon)) {
- continue;
- }
- if (token.is(Token::Type::EndOfFile)) {
- return list;
- }
- if (token.is(Token::Type::AtKeyword)) {
- tokens.reconsume_current_input_token();
- list.append(DeclarationOrAtRule(consume_an_at_rule(tokens)));
- continue;
- }
- if (token.is(Token::Type::Ident)) {
- Vector<StyleComponentValueRule> temp;
- temp.append(token);
- for (;;) {
- auto& peek = tokens.peek_token();
- if (peek.is(Token::Type::Semicolon) || peek.is(Token::Type::EndOfFile)) {
- break;
- }
- temp.append(consume_a_component_value(tokens));
- }
- auto token_stream = TokenStream(temp);
- auto maybe_declaration = consume_a_declaration(token_stream);
- if (maybe_declaration.has_value()) {
- list.append(DeclarationOrAtRule(maybe_declaration.value()));
- }
- continue;
- }
- log_parse_error();
- tokens.reconsume_current_input_token();
- for (;;) {
- auto& peek = tokens.peek_token();
- if (peek.is(Token::Type::Semicolon) || peek.is(Token::Type::EndOfFile))
- break;
- dbgln("Discarding token: '{}'", peek.to_debug_string());
- (void)consume_a_component_value(tokens);
- }
- }
- return list;
- }
- RefPtr<CSSRule> Parser::parse_as_rule()
- {
- return parse_a_rule(m_token_stream);
- }
- template<typename T>
- RefPtr<CSSRule> Parser::parse_a_rule(TokenStream<T>& tokens)
- {
- RefPtr<CSSRule> rule;
- tokens.skip_whitespace();
- auto& token = tokens.peek_token();
- if (token.is(Token::Type::EndOfFile)) {
- return {};
- } else if (token.is(Token::Type::AtKeyword)) {
- auto at_rule = consume_an_at_rule();
- rule = convert_to_rule(at_rule);
- } else {
- auto qualified_rule = consume_a_qualified_rule(tokens);
- if (!qualified_rule)
- return {};
- rule = convert_to_rule(*qualified_rule);
- }
- tokens.skip_whitespace();
- auto& maybe_eof = tokens.peek_token();
- if (maybe_eof.is(Token::Type::EndOfFile)) {
- return rule;
- }
- return {};
- }
- NonnullRefPtrVector<CSSRule> Parser::parse_as_list_of_rules()
- {
- return parse_a_list_of_rules(m_token_stream);
- }
- template<typename T>
- NonnullRefPtrVector<CSSRule> Parser::parse_a_list_of_rules(TokenStream<T>& tokens)
- {
- auto parsed_rules = consume_a_list_of_rules(tokens, false);
- NonnullRefPtrVector<CSSRule> rules;
- for (auto& rule : parsed_rules) {
- auto converted_rule = convert_to_rule(rule);
- if (converted_rule)
- rules.append(*converted_rule);
- }
- return rules;
- }
- Optional<StyleProperty> Parser::parse_as_declaration()
- {
- return parse_a_declaration(m_token_stream);
- }
- template<typename T>
- Optional<StyleProperty> Parser::parse_a_declaration(TokenStream<T>& tokens)
- {
- tokens.skip_whitespace();
- auto& token = tokens.peek_token();
- if (!token.is(Token::Type::Ident)) {
- return {};
- }
- auto declaration = consume_a_declaration(tokens);
- if (declaration.has_value())
- return convert_to_style_property(declaration.value());
- return {};
- }
- RefPtr<PropertyOwningCSSStyleDeclaration> Parser::parse_as_list_of_declarations()
- {
- return parse_a_list_of_declarations(m_token_stream);
- }
- template<typename T>
- RefPtr<PropertyOwningCSSStyleDeclaration> Parser::parse_a_list_of_declarations(TokenStream<T>& tokens)
- {
- auto declarations_and_at_rules = consume_a_list_of_declarations(tokens);
- Vector<StyleProperty> properties;
- HashMap<String, StyleProperty> custom_properties;
- for (auto& declaration_or_at_rule : declarations_and_at_rules) {
- if (declaration_or_at_rule.is_at_rule()) {
- dbgln_if(CSS_PARSER_DEBUG, "!!! CSS at-rule is not allowed here!");
- continue;
- }
- auto& declaration = declaration_or_at_rule.m_declaration;
- auto maybe_property = convert_to_style_property(declaration);
- if (maybe_property.has_value()) {
- auto property = maybe_property.value();
- if (property.property_id == PropertyID::Custom) {
- custom_properties.set(property.custom_name, property);
- } else {
- properties.append(property);
- }
- }
- }
- return PropertyOwningCSSStyleDeclaration::create(move(properties), move(custom_properties));
- }
- Optional<StyleComponentValueRule> Parser::parse_as_component_value()
- {
- return parse_a_component_value(m_token_stream);
- }
- template<typename T>
- Optional<StyleComponentValueRule> Parser::parse_a_component_value(TokenStream<T>& tokens)
- {
- tokens.skip_whitespace();
- auto& token = tokens.peek_token();
- if (token.is(Token::Type::EndOfFile)) {
- return {};
- }
- auto value = consume_a_component_value(tokens);
- tokens.skip_whitespace();
- auto& maybe_eof = tokens.peek_token();
- if (maybe_eof.is(Token::Type::EndOfFile)) {
- return value;
- }
- return {};
- }
- Vector<StyleComponentValueRule> Parser::parse_as_list_of_component_values()
- {
- return parse_a_list_of_component_values(m_token_stream);
- }
- template<typename T>
- Vector<StyleComponentValueRule> Parser::parse_a_list_of_component_values(TokenStream<T>& tokens)
- {
- Vector<StyleComponentValueRule> rules;
- for (;;) {
- if (tokens.peek_token().is(Token::Type::EndOfFile)) {
- break;
- }
- rules.append(consume_a_component_value(tokens));
- }
- return rules;
- }
- Vector<Vector<StyleComponentValueRule>> Parser::parse_as_comma_separated_list_of_component_values()
- {
- return parse_a_comma_separated_list_of_component_values(m_token_stream);
- }
- template<typename T>
- Vector<Vector<StyleComponentValueRule>> Parser::parse_a_comma_separated_list_of_component_values(TokenStream<T>& tokens)
- {
- Vector<Vector<StyleComponentValueRule>> lists;
- lists.append({});
- for (;;) {
- auto& next = tokens.next_token();
- if (next.is(Token::Type::Comma)) {
- lists.append({});
- continue;
- } else if (next.is(Token::Type::EndOfFile)) {
- break;
- }
- tokens.reconsume_current_input_token();
- auto component_value = consume_a_component_value(tokens);
- lists.last().append(component_value);
- }
- return lists;
- }
- Optional<AK::URL> Parser::parse_url_function(ParsingContext const& context, StyleComponentValueRule const& component_value, AllowedDataUrlType allowed_data_url_type)
- {
- // FIXME: Handle list of media queries. https://www.w3.org/TR/css-cascade-3/#conditional-import
- // FIXME: Handle data: urls (RFC2397)
- auto convert_string_to_url = [&](StringView& url_string) -> Optional<AK::URL> {
- if (url_string.starts_with("data:", CaseSensitivity::CaseInsensitive)) {
- auto data_url = AK::URL(url_string);
- switch (allowed_data_url_type) {
- case AllowedDataUrlType::Image:
- if (data_url.data_mime_type().starts_with("image"sv, CaseSensitivity::CaseInsensitive))
- return data_url;
- break;
- default:
- break;
- }
- return {};
- }
- return context.complete_url(url_string);
- };
- if (component_value.is(Token::Type::Url)) {
- auto url_string = component_value.token().url();
- return convert_string_to_url(url_string);
- }
- if (component_value.is_function() && component_value.function().name().equals_ignoring_case("url")) {
- auto& function_values = component_value.function().values();
- // FIXME: Handle url-modifiers. https://www.w3.org/TR/css-values-4/#url-modifiers
- for (size_t i = 0; i < function_values.size(); ++i) {
- auto& value = function_values[i];
- if (value.is(Token::Type::Whitespace))
- continue;
- if (value.is(Token::Type::String)) {
- auto url_string = value.token().string();
- return convert_string_to_url(url_string);
- }
- break;
- }
- }
- return {};
- }
- RefPtr<CSSRule> Parser::convert_to_rule(NonnullRefPtr<StyleRule> rule)
- {
- if (rule->m_type == StyleRule::Type::At) {
- if (has_ignored_vendor_prefix(rule->m_name)) {
- return {};
- } else if (rule->m_name.equals_ignoring_case("media"sv)) {
- auto media_query_tokens = TokenStream { rule->prelude() };
- auto media_query_list = parse_a_media_query_list(media_query_tokens);
- auto child_tokens = TokenStream { rule->block().values() };
- auto parser_rules = consume_a_list_of_rules(child_tokens, false);
- NonnullRefPtrVector<CSSRule> child_rules;
- for (auto& raw_rule : parser_rules) {
- if (auto child_rule = convert_to_rule(raw_rule))
- child_rules.append(*child_rule);
- }
- return CSSMediaRule::create(MediaList::create(move(media_query_list)), move(child_rules));
- } else if (rule->m_name.equals_ignoring_case("import"sv) && !rule->prelude().is_empty()) {
- Optional<AK::URL> url;
- for (auto& token : rule->prelude()) {
- if (token.is(Token::Type::Whitespace))
- continue;
- if (token.is(Token::Type::String)) {
- url = m_context.complete_url(token.token().string());
- } else {
- url = parse_url_function(m_context, token);
- }
- // FIXME: Handle list of media queries. https://www.w3.org/TR/css-cascade-3/#conditional-import
- if (url.has_value())
- break;
- }
- if (url.has_value())
- return CSSImportRule::create(url.value());
- else
- dbgln("Unable to parse url from @import rule");
- } else if (rule->m_name.equals_ignoring_case("supports"sv)) {
- auto supports_tokens = TokenStream { rule->prelude() };
- auto supports = parse_a_supports(supports_tokens);
- if (!supports) {
- if constexpr (CSS_PARSER_DEBUG) {
- dbgln("CSSParser: @supports rule invalid; discarding.");
- supports_tokens.dump_all_tokens();
- }
- return {};
- }
- auto child_tokens = TokenStream { rule->block().values() };
- auto parser_rules = consume_a_list_of_rules(child_tokens, false);
- NonnullRefPtrVector<CSSRule> child_rules;
- for (auto& raw_rule : parser_rules) {
- if (auto child_rule = convert_to_rule(raw_rule))
- child_rules.append(*child_rule);
- }
- return CSSSupportsRule::create(supports.release_nonnull(), move(child_rules));
- } else {
- dbgln("Unrecognized CSS at-rule: @{}", rule->m_name);
- }
- // FIXME: More at rules!
- } else {
- auto prelude_stream = TokenStream(rule->m_prelude);
- auto selectors = parse_a_selector(prelude_stream);
- if (selectors.is_error()) {
- if (selectors.error() != ParsingResult::IncludesIgnoredVendorPrefix) {
- dbgln("CSSParser: style rule selectors invalid; discarding.");
- if constexpr (CSS_PARSER_DEBUG) {
- prelude_stream.dump_all_tokens();
- }
- }
- return {};
- }
- if (selectors.value().is_empty()) {
- dbgln("CSSParser: empty selector; discarding.");
- return {};
- }
- auto declaration = convert_to_declaration(*rule->m_block);
- if (!declaration) {
- dbgln("CSSParser: style rule declaration invalid; discarding.");
- return {};
- }
- return CSSStyleRule::create(move(selectors.value()), move(*declaration));
- }
- return {};
- }
- RefPtr<PropertyOwningCSSStyleDeclaration> Parser::convert_to_declaration(NonnullRefPtr<StyleBlockRule> block)
- {
- if (!block->is_curly())
- return {};
- auto stream = TokenStream(block->m_values);
- return parse_a_list_of_declarations(stream);
- }
- Optional<StyleProperty> Parser::convert_to_style_property(StyleDeclarationRule const& declaration)
- {
- auto& property_name = declaration.m_name;
- auto property_id = property_id_from_string(property_name);
- if (property_id == PropertyID::Invalid) {
- if (property_name.starts_with("--")) {
- property_id = PropertyID::Custom;
- } else if (has_ignored_vendor_prefix(property_name)) {
- return {};
- } else if (!property_name.starts_with("-")) {
- dbgln("Unrecognized CSS property '{}'", property_name);
- return {};
- }
- }
- auto value_token_stream = TokenStream(declaration.m_values);
- auto value = parse_css_value(property_id, value_token_stream);
- if (value.is_error()) {
- if (value.error() != ParsingResult::IncludesIgnoredVendorPrefix) {
- dbgln("Unable to parse value for CSS property '{}'.", property_name);
- if constexpr (CSS_PARSER_DEBUG) {
- value_token_stream.dump_all_tokens();
- }
- }
- return {};
- }
- if (property_id == PropertyID::Custom) {
- return StyleProperty { declaration.m_important, property_id, value.release_value(), declaration.m_name };
- } else {
- return StyleProperty { declaration.m_important, property_id, value.release_value(), {} };
- }
- }
- Optional<float> Parser::try_parse_float(StringView string)
- {
- // FIXME: This is copied from DeprecatedCSSParser, so may not be to spec.
- const char* str = string.characters_without_null_termination();
- size_t len = string.length();
- size_t weight = 1;
- int exp_val = 0;
- float value = 0.0f;
- float fraction = 0.0f;
- bool has_sign = false;
- bool is_negative = false;
- bool is_fractional = false;
- bool is_scientific = false;
- if (str[0] == '-') {
- is_negative = true;
- has_sign = true;
- }
- if (str[0] == '+') {
- has_sign = true;
- }
- for (size_t i = has_sign; i < len; i++) {
- // Looks like we're about to start working on the fractional part
- if (str[i] == '.') {
- is_fractional = true;
- continue;
- }
- if (str[i] == 'e' || str[i] == 'E') {
- if (str[i + 1] == '-' || str[i + 1] == '+')
- exp_val = atoi(str + i + 2);
- else
- exp_val = atoi(str + i + 1);
- is_scientific = true;
- continue;
- }
- if (str[i] < '0' || str[i] > '9' || exp_val != 0)
- return {};
- if (is_fractional) {
- fraction *= 10;
- fraction += str[i] - '0';
- weight *= 10;
- } else {
- value = value * 10;
- value += str[i] - '0';
- }
- }
- fraction /= weight;
- value += fraction;
- if (is_scientific) {
- bool divide = exp_val < 0;
- if (divide)
- exp_val *= -1;
- for (int i = 0; i < exp_val; i++) {
- if (divide)
- value /= 10;
- else
- value *= 10;
- }
- }
- return is_negative ? -value : value;
- }
- RefPtr<StyleValue> Parser::parse_builtin_value(ParsingContext const&, StyleComponentValueRule const& component_value)
- {
- if (component_value.is(Token::Type::Ident)) {
- auto ident = component_value.token().ident();
- if (ident.equals_ignoring_case("inherit"))
- return InheritStyleValue::the();
- if (ident.equals_ignoring_case("initial"))
- return InitialStyleValue::the();
- if (ident.equals_ignoring_case("unset"))
- return UnsetStyleValue::the();
- // FIXME: Implement `revert` and `revert-layer` keywords, from Cascade4 and Cascade5 respectively
- }
- return {};
- }
- RefPtr<StyleValue> Parser::parse_dynamic_value(ParsingContext const& context, StyleComponentValueRule const& component_value)
- {
- if (component_value.is_function()) {
- auto& function = component_value.function();
- if (function.name().equals_ignoring_case("calc")) {
- auto calc_expression = parse_calc_expression(context, function.values());
- // FIXME: Either produce a string value of calc() here, or do so in CalculatedStyleValue::to_string().
- if (calc_expression)
- return CalculatedStyleValue::create("(FIXME:calc to string)", calc_expression.release_nonnull());
- } else if (function.name().equals_ignoring_case("var")) {
- // FIXME: Handle fallback value as second parameter
- // https://www.w3.org/TR/css-variables-1/#using-variables
- if (!component_value.function().values().is_empty()) {
- auto& property_name_token = component_value.function().values().first();
- if (property_name_token.is(Token::Type::Ident))
- return CustomStyleValue::create(property_name_token.token().ident());
- else
- dbgln("First argument to var() function was not an ident: '{}'", property_name_token.to_debug_string());
- }
- }
- }
- return {};
- }
- Optional<Length> Parser::parse_length(ParsingContext const& context, StyleComponentValueRule const& component_value)
- {
- Length::Type type = Length::Type::Undefined;
- Optional<float> numeric_value;
- if (component_value.is(Token::Type::Dimension)) {
- auto length_string = component_value.token().m_value.string_view();
- auto unit_string = component_value.token().m_unit.string_view();
- if (unit_string.equals_ignoring_case("%")) {
- type = Length::Type::Percentage;
- } else if (unit_string.equals_ignoring_case("px")) {
- type = Length::Type::Px;
- } else if (unit_string.equals_ignoring_case("pt")) {
- type = Length::Type::Pt;
- } else if (unit_string.equals_ignoring_case("pc")) {
- type = Length::Type::Pc;
- } else if (unit_string.equals_ignoring_case("mm")) {
- type = Length::Type::Mm;
- } else if (unit_string.equals_ignoring_case("rem")) {
- type = Length::Type::Rem;
- } else if (unit_string.equals_ignoring_case("em")) {
- type = Length::Type::Em;
- } else if (unit_string.equals_ignoring_case("ex")) {
- type = Length::Type::Ex;
- } else if (unit_string.equals_ignoring_case("ch")) {
- type = Length::Type::Ch;
- } else if (unit_string.equals_ignoring_case("vw")) {
- type = Length::Type::Vw;
- } else if (unit_string.equals_ignoring_case("vh")) {
- type = Length::Type::Vh;
- } else if (unit_string.equals_ignoring_case("vmax")) {
- type = Length::Type::Vmax;
- } else if (unit_string.equals_ignoring_case("vmin")) {
- type = Length::Type::Vmin;
- } else if (unit_string.equals_ignoring_case("cm")) {
- type = Length::Type::Cm;
- } else if (unit_string.equals_ignoring_case("in")) {
- type = Length::Type::In;
- } else if (unit_string.equals_ignoring_case("Q")) {
- type = Length::Type::Q;
- } else {
- return {};
- }
- numeric_value = try_parse_float(length_string);
- } else if (component_value.is(Token::Type::Percentage)) {
- type = Length::Type::Percentage;
- auto value_string = component_value.token().m_value.string_view();
- numeric_value = try_parse_float(value_string);
- } else if (component_value.is(Token::Type::Ident) && component_value.token().ident().equals_ignoring_case("auto")) {
- return Length::make_auto();
- } else if (component_value.is(Token::Type::Number)) {
- auto value_string = component_value.token().m_value.string_view();
- if (value_string == "0") {
- type = Length::Type::Px;
- numeric_value = 0;
- } else if (context.in_quirks_mode() && property_has_quirk(context.current_property_id(), Quirk::UnitlessLength)) {
- // https://quirks.spec.whatwg.org/#quirky-length-value
- // FIXME: Disallow quirk when inside a CSS sub-expression (like `calc()`)
- // "The <quirky-length> value must not be supported in arguments to CSS expressions other than the rect()
- // expression, and must not be supported in the supports() static method of the CSS interface."
- type = Length::Type::Px;
- numeric_value = try_parse_float(value_string);
- }
- }
- if (!numeric_value.has_value())
- return {};
- return Length(numeric_value.value(), type);
- }
- RefPtr<StyleValue> Parser::parse_length_value(ParsingContext const& context, StyleComponentValueRule const& component_value)
- {
- // Numbers with no units can be lengths, in two situations:
- // 1) We're in quirks mode, and it's an integer.
- // 2) It's a 0.
- // We handle case 1 here. Case 2 is handled by NumericStyleValue pretending to be a LengthStyleValue if it is 0.
- // FIXME: "auto" is also treated as a Length, and most of the time that is how it is used, but not always.
- // Possibly it should always be an Identifier, and then quietly converted to a Length when needed, like 0 above.
- // Right now, it instead is quietly converted to an Identifier when needed.
- if (component_value.is(Token::Type::Dimension) || component_value.is(Token::Type::Percentage)
- || (component_value.is(Token::Type::Ident) && component_value.token().ident().equals_ignoring_case("auto"sv))
- || (context.in_quirks_mode() && component_value.is(Token::Type::Number) && component_value.token().m_value.string_view() != "0"sv)) {
- auto length = parse_length(context, component_value);
- if (length.has_value())
- return LengthStyleValue::create(length.value());
- }
- return {};
- }
- RefPtr<StyleValue> Parser::parse_numeric_value(ParsingContext const&, StyleComponentValueRule const& component_value)
- {
- if (component_value.is(Token::Type::Number)) {
- auto number = component_value.token();
- if (number.m_number_type == Token::NumberType::Integer) {
- return NumericStyleValue::create_integer(number.to_integer());
- } else {
- auto float_value = try_parse_float(number.m_value.string_view());
- if (float_value.has_value())
- return NumericStyleValue::create_float(float_value.value());
- }
- }
- return {};
- }
- RefPtr<StyleValue> Parser::parse_identifier_value(ParsingContext const&, StyleComponentValueRule const& component_value)
- {
- if (component_value.is(Token::Type::Ident)) {
- auto value_id = value_id_from_string(component_value.token().ident());
- if (value_id != ValueID::Invalid)
- return IdentifierStyleValue::create(value_id);
- }
- return {};
- }
- Optional<Color> Parser::parse_color(ParsingContext const& context, StyleComponentValueRule const& component_value)
- {
- // https://www.w3.org/TR/css-color-3/
- if (component_value.is(Token::Type::Ident)) {
- auto ident = component_value.token().ident();
- auto color = Color::from_string(ident);
- if (color.has_value())
- return color;
- } else if (component_value.is(Token::Type::Hash)) {
- auto color = Color::from_string(String::formatted("#{}", component_value.token().m_value.to_string()));
- if (color.has_value())
- return color;
- return {};
- } else if (component_value.is_function()) {
- auto& function = component_value.function();
- auto& values = function.values();
- Vector<Token> params;
- for (size_t i = 0; i < values.size(); ++i) {
- auto& value = values.at(i);
- if (value.is(Token::Type::Whitespace))
- continue;
- if (value.is(Token::Type::Percentage) || value.is(Token::Type::Number)) {
- params.append(value.token());
- // Eat following comma and whitespace
- while ((i + 1) < values.size()) {
- auto& next = values.at(i + 1);
- if (next.is(Token::Type::Whitespace))
- i++;
- else if (next.is(Token::Type::Comma))
- break;
- return {};
- }
- }
- }
- if (function.name().equals_ignoring_case("rgb")) {
- if (params.size() != 3)
- return {};
- auto r_val = params[0];
- auto g_val = params[1];
- auto b_val = params[2];
- if (r_val.is(Token::NumberType::Integer)
- && g_val.is(Token::NumberType::Integer)
- && b_val.is(Token::NumberType::Integer)) {
- auto maybe_r = r_val.m_value.string_view().to_uint<u8>();
- auto maybe_g = g_val.m_value.string_view().to_uint<u8>();
- auto maybe_b = b_val.m_value.string_view().to_uint<u8>();
- if (maybe_r.has_value() && maybe_g.has_value() && maybe_b.has_value())
- return Color(maybe_r.value(), maybe_g.value(), maybe_b.value());
- } else if (r_val.is(Token::Type::Percentage)
- && g_val.is(Token::Type::Percentage)
- && b_val.is(Token::Type::Percentage)) {
- auto maybe_r = try_parse_float(r_val.m_value.string_view());
- auto maybe_g = try_parse_float(g_val.m_value.string_view());
- auto maybe_b = try_parse_float(b_val.m_value.string_view());
- if (maybe_r.has_value() && maybe_g.has_value() && maybe_b.has_value()) {
- u8 r = clamp(lroundf(maybe_r.value() * 2.55f), 0, 255);
- u8 g = clamp(lroundf(maybe_g.value() * 2.55f), 0, 255);
- u8 b = clamp(lroundf(maybe_b.value() * 2.55f), 0, 255);
- return Color(r, g, b);
- }
- }
- } else if (function.name().equals_ignoring_case("rgba")) {
- if (params.size() != 4)
- return {};
- auto r_val = params[0];
- auto g_val = params[1];
- auto b_val = params[2];
- auto a_val = params[3];
- if (r_val.is(Token::NumberType::Integer)
- && g_val.is(Token::NumberType::Integer)
- && b_val.is(Token::NumberType::Integer)
- && a_val.is(Token::Type::Number)) {
- auto maybe_r = r_val.m_value.string_view().to_uint<u8>();
- auto maybe_g = g_val.m_value.string_view().to_uint<u8>();
- auto maybe_b = b_val.m_value.string_view().to_uint<u8>();
- auto maybe_a = try_parse_float(a_val.m_value.string_view());
- if (maybe_r.has_value() && maybe_g.has_value() && maybe_b.has_value() && maybe_a.has_value()) {
- u8 a = clamp(lroundf(maybe_a.value() * 255.0f), 0, 255);
- return Color(maybe_r.value(), maybe_g.value(), maybe_b.value(), a);
- }
- } else if (r_val.is(Token::Type::Percentage)
- && g_val.is(Token::Type::Percentage)
- && b_val.is(Token::Type::Percentage)
- && a_val.is(Token::Type::Number)) {
- auto maybe_r = try_parse_float(r_val.m_value.string_view());
- auto maybe_g = try_parse_float(g_val.m_value.string_view());
- auto maybe_b = try_parse_float(b_val.m_value.string_view());
- auto maybe_a = try_parse_float(a_val.m_value.string_view());
- if (maybe_r.has_value() && maybe_g.has_value() && maybe_b.has_value() && maybe_a.has_value()) {
- u8 r = clamp(lroundf(maybe_r.value() * 2.55f), 0, 255);
- u8 g = clamp(lroundf(maybe_g.value() * 2.55f), 0, 255);
- u8 b = clamp(lroundf(maybe_b.value() * 2.55f), 0, 255);
- u8 a = clamp(lroundf(maybe_a.value() * 255.0f), 0, 255);
- return Color(r, g, b, a);
- }
- }
- } else if (function.name().equals_ignoring_case("hsl")) {
- if (params.size() != 3)
- return {};
- auto h_val = params[0];
- auto s_val = params[1];
- auto l_val = params[2];
- if (h_val.is(Token::Type::Number)
- && s_val.is(Token::Type::Percentage)
- && l_val.is(Token::Type::Percentage)) {
- auto maybe_h = try_parse_float(h_val.m_value.string_view());
- auto maybe_s = try_parse_float(s_val.m_value.string_view());
- auto maybe_l = try_parse_float(l_val.m_value.string_view());
- if (maybe_h.has_value() && maybe_s.has_value() && maybe_l.has_value()) {
- float h = maybe_h.value();
- float s = maybe_s.value() / 100.0f;
- float l = maybe_l.value() / 100.0f;
- return Color::from_hsl(static_cast<double>(h), static_cast<double>(s), static_cast<double>(l));
- }
- }
- } else if (function.name().equals_ignoring_case("hsla")) {
- if (params.size() != 4)
- return {};
- auto h_val = params[0];
- auto s_val = params[1];
- auto l_val = params[2];
- auto a_val = params[3];
- if (h_val.is(Token::Type::Number)
- && s_val.is(Token::Type::Percentage)
- && l_val.is(Token::Type::Percentage)
- && a_val.is(Token::Type::Number)) {
- auto maybe_h = try_parse_float(h_val.m_value.string_view());
- auto maybe_s = try_parse_float(s_val.m_value.string_view());
- auto maybe_l = try_parse_float(l_val.m_value.string_view());
- auto maybe_a = try_parse_float(a_val.m_value.string_view());
- if (maybe_h.has_value() && maybe_s.has_value() && maybe_l.has_value() && maybe_a.has_value()) {
- float h = maybe_h.value();
- float s = maybe_s.value() / 100.0f;
- float l = maybe_l.value() / 100.0f;
- float a = maybe_a.value();
- return Color::from_hsla(static_cast<double>(h), static_cast<double>(s), static_cast<double>(l), static_cast<double>(a));
- }
- }
- }
- return {};
- }
- // https://quirks.spec.whatwg.org/#the-hashless-hex-color-quirk
- if (context.in_quirks_mode() && property_has_quirk(context.current_property_id(), Quirk::HashlessHexColor)) {
- // The value of a quirky color is obtained from the possible component values using the following algorithm,
- // aborting on the first step that returns a value:
- // 1. Let cv be the component value.
- auto& cv = component_value;
- String serialization;
- // 2. If cv is a <number-token> or a <dimension-token>, follow these substeps:
- if (cv.is(Token::Type::Number) || cv.is(Token::Type::Dimension)) {
- // 1. If cv’s type flag is not "integer", return an error.
- // This means that values that happen to use scientific notation, e.g., 5e5e5e, will fail to parse.
- if (cv.token().number_type() != Token::NumberType::Integer)
- return {};
- // 2. If cv’s value is less than zero, return an error.
- auto value = cv.is(Token::Type::Number) ? cv.token().to_integer() : cv.token().dimension_value_int();
- if (value < 0)
- return {};
- // 3. Let serialization be the serialization of cv’s value, as a base-ten integer using digits 0-9 (U+0030 to U+0039) in the shortest form possible.
- StringBuilder serialization_builder;
- serialization_builder.appendff("{}", value);
- // 4. If cv is a <dimension-token>, append the unit to serialization.
- if (cv.is(Token::Type::Dimension))
- serialization_builder.append(cv.token().dimension_unit());
- // 5. If serialization consists of fewer than six characters, prepend zeros (U+0030) so that it becomes six characters.
- serialization = serialization_builder.to_string();
- if (serialization_builder.length() < 6) {
- StringBuilder builder;
- for (size_t i = 0; i < (6 - serialization_builder.length()); i++)
- builder.append('0');
- builder.append(serialization_builder.string_view());
- serialization = builder.to_string();
- }
- }
- // 3. Otherwise, cv is an <ident-token>; let serialization be cv’s value.
- else {
- if (!cv.is(Token::Type::Ident))
- return {};
- serialization = cv.token().ident();
- }
- // 4. If serialization does not consist of three or six characters, return an error.
- if (serialization.length() != 3 && serialization.length() != 6)
- return {};
- // 5. If serialization contains any characters not in the range [0-9A-Fa-f] (U+0030 to U+0039, U+0041 to U+0046, U+0061 to U+0066), return an error.
- for (auto c : serialization) {
- if (!((c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f')))
- return {};
- }
- // 6. Return the concatenation of "#" (U+0023) and serialization.
- String concatenation = String::formatted("#{}", serialization);
- return Color::from_string(concatenation);
- }
- return {};
- }
- RefPtr<StyleValue> Parser::parse_color_value(ParsingContext const& context, StyleComponentValueRule const& component_value)
- {
- auto color = parse_color(context, component_value);
- if (color.has_value())
- return ColorStyleValue::create(color.value());
- return {};
- }
- RefPtr<StyleValue> Parser::parse_string_value(ParsingContext const&, StyleComponentValueRule const& component_value)
- {
- if (component_value.is(Token::Type::String))
- return StringStyleValue::create(component_value.token().string());
- return {};
- }
- RefPtr<StyleValue> Parser::parse_image_value(ParsingContext const& context, StyleComponentValueRule const& component_value)
- {
- auto url = parse_url_function(context, component_value, AllowedDataUrlType::Image);
- if (url.has_value())
- return ImageStyleValue::create(url.value());
- // FIXME: Handle gradients.
- return {};
- }
- RefPtr<StyleValue> Parser::parse_background_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- RefPtr<StyleValue> background_color;
- RefPtr<StyleValue> background_image;
- RefPtr<StyleValue> repeat_x;
- RefPtr<StyleValue> repeat_y;
- // FIXME: Implement background-position.
- // FIXME: Implement background-size.
- // FIXME: Implement background-attachment.
- // FIXME: Implement background-clip.
- // FIXME: Implement background-origin.
- for (size_t i = 0; i < component_values.size(); ++i) {
- auto& part = component_values[i];
- // FIXME: Handle multiple backgrounds, by returning a List of BackgroundStyleValues.
- if (part.is(Token::Type::Comma)) {
- dbgln("CSS Parser does not yet support multiple comma-separated values for background.");
- break;
- }
- auto value = parse_css_value(context, part);
- if (!value) {
- return nullptr;
- }
- if (property_accepts_value(PropertyID::BackgroundColor, *value)) {
- if (background_color)
- return nullptr;
- background_color = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::BackgroundImage, *value)) {
- if (background_image)
- return nullptr;
- background_image = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::BackgroundRepeat, *value)) {
- if (repeat_x)
- return nullptr;
- auto value_id = value->to_identifier();
- if (value_id == ValueID::RepeatX || value_id == ValueID::RepeatY) {
- repeat_x = IdentifierStyleValue::create(value_id == ValueID::RepeatX ? ValueID::Repeat : ValueID::NoRepeat);
- repeat_y = IdentifierStyleValue::create(value_id == ValueID::RepeatX ? ValueID::NoRepeat : ValueID::Repeat);
- continue;
- }
- // Check following value, if it's also a repeat, set both.
- if (i + 1 < component_values.size()) {
- auto next_value = parse_css_value(context, component_values[i + 1]);
- if (next_value && property_accepts_value(PropertyID::BackgroundRepeat, *next_value)) {
- ++i;
- repeat_x = value.release_nonnull();
- repeat_y = next_value.release_nonnull();
- continue;
- }
- }
- auto repeat = value.release_nonnull();
- repeat_x = repeat;
- repeat_y = repeat;
- continue;
- }
- return nullptr;
- }
- if (!background_color)
- background_color = property_initial_value(PropertyID::BackgroundColor);
- if (!background_image)
- background_image = property_initial_value(PropertyID::BackgroundImage);
- if (!repeat_x)
- repeat_x = property_initial_value(PropertyID::BackgroundRepeatX);
- if (!repeat_y)
- repeat_y = property_initial_value(PropertyID::BackgroundRepeatY);
- return BackgroundStyleValue::create(background_color.release_nonnull(), background_image.release_nonnull(), repeat_x.release_nonnull(), repeat_y.release_nonnull());
- }
- RefPtr<StyleValue> Parser::parse_background_image_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- if (component_values.size() == 1) {
- auto maybe_value = parse_css_value(context, component_values.first());
- if (!maybe_value)
- return nullptr;
- auto value = maybe_value.release_nonnull();
- if (property_accepts_value(PropertyID::BackgroundImage, *value))
- return value;
- return nullptr;
- }
- // FIXME: Handle multiple sets of comma-separated values.
- dbgln("CSS Parser does not yet support multiple comma-separated values for background-image.");
- return nullptr;
- }
- RefPtr<StyleValue> Parser::parse_single_background_position_value(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- // NOTE: This *looks* like it parses a <position>, but it doesn't. From the spec:
- // "Note: The background-position property also accepts a three-value syntax.
- // This has been disallowed generically because it creates parsing ambiguities
- // when combined with other length or percentage components in a property value."
- // - https://www.w3.org/TR/css-values-4/#typedef-position
- // So, we'll need a separate function to parse <position> later.
- auto start_position = tokens.position();
- auto error = [&]() {
- tokens.rewind_to_position(start_position);
- return nullptr;
- };
- auto to_edge = [](ValueID identifier) -> Optional<PositionEdge> {
- switch (identifier) {
- case ValueID::Top:
- return PositionEdge::Top;
- case ValueID::Bottom:
- return PositionEdge::Bottom;
- case ValueID::Left:
- return PositionEdge::Left;
- case ValueID::Right:
- return PositionEdge::Right;
- default:
- return {};
- }
- };
- auto is_horizontal = [](ValueID identifier) -> bool {
- switch (identifier) {
- case ValueID::Left:
- case ValueID::Right:
- return true;
- default:
- return false;
- }
- };
- auto is_vertical = [](ValueID identifier) -> bool {
- switch (identifier) {
- case ValueID::Top:
- case ValueID::Bottom:
- return true;
- default:
- return false;
- }
- };
- auto zero_offset = Length::make_px(0);
- auto center_offset = Length { 50, Length::Type::Percentage };
- struct EdgeOffset {
- PositionEdge edge;
- Length offset;
- bool edge_provided;
- bool offset_provided;
- };
- Optional<EdgeOffset> horizontal;
- Optional<EdgeOffset> vertical;
- bool found_center = false;
- while (tokens.has_next_token()) {
- // Check if we're done
- auto seen_items = (horizontal.has_value() ? 1 : 0) + (vertical.has_value() ? 1 : 0) + (found_center ? 1 : 0);
- if (seen_items == 2)
- break;
- auto& token = tokens.peek_token();
- auto maybe_value = parse_css_value(context, token);
- if (!maybe_value || !property_accepts_value(PropertyID::BackgroundPosition, *maybe_value))
- break;
- tokens.next_token();
- auto value = maybe_value.release_nonnull();
- if (value->has_length()) {
- if (!horizontal.has_value()) {
- horizontal = EdgeOffset { PositionEdge::Left, value->to_length(), false, true };
- } else if (!vertical.has_value()) {
- vertical = EdgeOffset { PositionEdge::Top, value->to_length(), false, true };
- } else {
- return error();
- }
- continue;
- }
- if (value->has_identifier()) {
- auto identifier = value->to_identifier();
- if (is_horizontal(identifier)) {
- Length offset = zero_offset;
- bool offset_provided = false;
- if (tokens.has_next_token()) {
- auto maybe_offset = parse_length(context, tokens.peek_token());
- if (maybe_offset.has_value()) {
- offset = maybe_offset.value();
- offset_provided = true;
- tokens.next_token();
- }
- }
- horizontal = EdgeOffset { *to_edge(identifier), offset, true, offset_provided };
- } else if (is_vertical(identifier)) {
- Length offset = zero_offset;
- bool offset_provided = false;
- if (tokens.has_next_token()) {
- auto maybe_offset = parse_length(context, tokens.peek_token());
- if (maybe_offset.has_value()) {
- offset = maybe_offset.value();
- offset_provided = true;
- tokens.next_token();
- }
- }
- vertical = EdgeOffset { *to_edge(identifier), offset, true, offset_provided };
- } else if (identifier == ValueID::Center) {
- found_center = true;
- } else {
- return error();
- }
- continue;
- }
- tokens.reconsume_current_input_token();
- break;
- }
- if (found_center) {
- if (horizontal.has_value() && vertical.has_value())
- return error();
- if (!horizontal.has_value())
- horizontal = EdgeOffset { PositionEdge::Left, center_offset, true, false };
- if (!vertical.has_value())
- vertical = EdgeOffset { PositionEdge::Top, center_offset, true, false };
- }
- if (!horizontal.has_value() && !vertical.has_value())
- return error();
- // Unpack `<edge> <length>`:
- // The loop above reads this pattern as a single EdgeOffset, when actually, it should be treated
- // as `x y` if the edge is horizontal, and `y` (with the second token reconsumed) otherwise.
- if (!vertical.has_value() && horizontal->edge_provided && horizontal->offset_provided) {
- // Split into `x y`
- vertical = EdgeOffset { PositionEdge::Top, horizontal->offset, false, true };
- horizontal->offset = zero_offset;
- horizontal->offset_provided = false;
- } else if (!horizontal.has_value() && vertical->edge_provided && vertical->offset_provided) {
- // `y`, reconsume
- vertical->offset = zero_offset;
- vertical->offset_provided = false;
- tokens.reconsume_current_input_token();
- }
- // If only one value is specified, the second value is assumed to be center.
- if (!horizontal.has_value())
- horizontal = EdgeOffset { PositionEdge::Left, center_offset, false, false };
- if (!vertical.has_value())
- vertical = EdgeOffset { PositionEdge::Top, center_offset, false, false };
- return PositionStyleValue::create(
- horizontal->edge, horizontal->offset,
- vertical->edge, vertical->offset);
- }
- RefPtr<StyleValue> Parser::parse_background_position_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- auto tokens = TokenStream { component_values };
- // FIXME: Handle multiple sets of comma-separated values.
- return parse_single_background_position_value(context, tokens);
- }
- RefPtr<StyleValue> Parser::parse_background_repeat_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- auto is_directional_repeat = [](StyleValue const& value) -> bool {
- auto value_id = value.to_identifier();
- return value_id == ValueID::RepeatX || value_id == ValueID::RepeatY;
- };
- if (component_values.size() == 1) {
- auto maybe_value = parse_css_value(context, component_values.first());
- if (!maybe_value)
- return nullptr;
- auto value = maybe_value.release_nonnull();
- if (!property_accepts_value(PropertyID::BackgroundRepeat, *value))
- return nullptr;
- if (is_directional_repeat(value)) {
- auto value_id = value->to_identifier();
- return BackgroundRepeatStyleValue::create(
- IdentifierStyleValue::create(value_id == ValueID::RepeatX ? ValueID::Repeat : ValueID::NoRepeat),
- IdentifierStyleValue::create(value_id == ValueID::RepeatX ? ValueID::NoRepeat : ValueID::Repeat));
- }
- return BackgroundRepeatStyleValue::create(value, value);
- }
- if (component_values.size() == 2) {
- auto maybe_x_value = parse_css_value(context, component_values[0]);
- auto maybe_y_value = parse_css_value(context, component_values[1]);
- if (!maybe_x_value || !maybe_y_value)
- return nullptr;
- auto x_value = maybe_x_value.release_nonnull();
- auto y_value = maybe_y_value.release_nonnull();
- if (!property_accepts_value(PropertyID::BackgroundRepeat, x_value) || !property_accepts_value(PropertyID::BackgroundRepeat, y_value))
- return nullptr;
- if (is_directional_repeat(x_value) || is_directional_repeat(y_value))
- return nullptr;
- return BackgroundRepeatStyleValue::create(x_value, y_value);
- }
- // FIXME: Handle multiple sets of comma-separated values.
- dbgln("CSS Parser does not yet support multiple comma-separated values for background-repeat.");
- return nullptr;
- }
- RefPtr<StyleValue> Parser::parse_border_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- if (component_values.size() > 3)
- return nullptr;
- RefPtr<StyleValue> border_width;
- RefPtr<StyleValue> border_color;
- RefPtr<StyleValue> border_style;
- for (auto& part : component_values) {
- auto value = parse_css_value(context, part);
- if (!value)
- return nullptr;
- if (property_accepts_value(PropertyID::BorderWidth, *value)) {
- if (border_width)
- return nullptr;
- border_width = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::BorderColor, *value)) {
- if (border_color)
- return nullptr;
- border_color = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::BorderStyle, *value)) {
- if (border_style)
- return nullptr;
- border_style = value.release_nonnull();
- continue;
- }
- return nullptr;
- }
- if (!border_width)
- border_width = property_initial_value(PropertyID::BorderWidth);
- if (!border_style)
- border_style = property_initial_value(PropertyID::BorderStyle);
- if (!border_color)
- border_color = property_initial_value(PropertyID::BorderColor);
- return BorderStyleValue::create(border_width.release_nonnull(), border_style.release_nonnull(), border_color.release_nonnull());
- }
- RefPtr<StyleValue> Parser::parse_border_radius_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- if (component_values.size() == 2) {
- auto horizontal = parse_length(context, component_values[0]);
- auto vertical = parse_length(context, component_values[1]);
- if (horizontal.has_value() && vertical.has_value())
- return BorderRadiusStyleValue::create(horizontal.value(), vertical.value());
- return nullptr;
- }
- if (component_values.size() == 1) {
- auto radius = parse_length(context, component_values[0]);
- if (radius.has_value())
- return BorderRadiusStyleValue::create(radius.value(), radius.value());
- return nullptr;
- }
- return nullptr;
- }
- RefPtr<StyleValue> Parser::parse_border_radius_shorthand_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- auto top_left = [&](Vector<Length>& radii) { return radii[0]; };
- auto top_right = [&](Vector<Length>& radii) {
- switch (radii.size()) {
- case 4:
- case 3:
- case 2:
- return radii[1];
- case 1:
- return radii[0];
- default:
- VERIFY_NOT_REACHED();
- }
- };
- auto bottom_right = [&](Vector<Length>& radii) {
- switch (radii.size()) {
- case 4:
- case 3:
- return radii[2];
- case 2:
- case 1:
- return radii[0];
- default:
- VERIFY_NOT_REACHED();
- }
- };
- auto bottom_left = [&](Vector<Length>& radii) {
- switch (radii.size()) {
- case 4:
- return radii[3];
- case 3:
- case 2:
- return radii[1];
- case 1:
- return radii[0];
- default:
- VERIFY_NOT_REACHED();
- }
- };
- Vector<Length> horizontal_radii;
- Vector<Length> vertical_radii;
- bool reading_vertical = false;
- for (auto& value : component_values) {
- if (value.is(Token::Type::Delim) && value.token().delim() == "/"sv) {
- if (reading_vertical || horizontal_radii.is_empty())
- return nullptr;
- reading_vertical = true;
- continue;
- }
- auto maybe_length = parse_length(context, value);
- if (!maybe_length.has_value())
- return nullptr;
- if (reading_vertical) {
- vertical_radii.append(maybe_length.value());
- } else {
- horizontal_radii.append(maybe_length.value());
- }
- }
- if (horizontal_radii.size() > 4 || vertical_radii.size() > 4
- || horizontal_radii.is_empty()
- || (reading_vertical && vertical_radii.is_empty()))
- return nullptr;
- NonnullRefPtrVector<StyleValue> border_radii;
- border_radii.append(BorderRadiusStyleValue::create(top_left(horizontal_radii),
- vertical_radii.is_empty() ? top_left(horizontal_radii) : top_left(vertical_radii)));
- border_radii.append(BorderRadiusStyleValue::create(top_right(horizontal_radii),
- vertical_radii.is_empty() ? top_right(horizontal_radii) : top_right(vertical_radii)));
- border_radii.append(BorderRadiusStyleValue::create(bottom_right(horizontal_radii),
- vertical_radii.is_empty() ? bottom_right(horizontal_radii) : bottom_right(vertical_radii)));
- border_radii.append(BorderRadiusStyleValue::create(bottom_left(horizontal_radii),
- vertical_radii.is_empty() ? bottom_left(horizontal_radii) : bottom_left(vertical_radii)));
- return StyleValueList::create(move(border_radii));
- }
- RefPtr<StyleValue> Parser::parse_box_shadow_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- // "none"
- if (component_values.size() == 1 && component_values.first().is(Token::Type::Ident)) {
- auto ident = parse_identifier_value(context, component_values.first());
- if (ident && ident->to_identifier() == ValueID::None)
- return ident;
- }
- // FIXME: Also support inset, spread-radius and multiple comma-separated box-shadows
- Length offset_x {};
- Length offset_y {};
- Length blur_radius {};
- Color color {};
- if (component_values.size() < 3 || component_values.size() > 4)
- return nullptr;
- auto maybe_x = parse_length(context, component_values[0]);
- if (!maybe_x.has_value())
- return nullptr;
- offset_x = maybe_x.value();
- auto maybe_y = parse_length(context, component_values[1]);
- if (!maybe_y.has_value())
- return nullptr;
- offset_y = maybe_y.value();
- if (component_values.size() == 3) {
- auto parsed_color = parse_color(context, component_values[2]);
- if (!parsed_color.has_value())
- return nullptr;
- color = parsed_color.value();
- } else if (component_values.size() == 4) {
- auto maybe_blur_radius = parse_length(context, component_values[2]);
- if (!maybe_blur_radius.has_value())
- return nullptr;
- blur_radius = maybe_blur_radius.value();
- auto parsed_color = parse_color(context, component_values[3]);
- if (!parsed_color.has_value())
- return nullptr;
- color = parsed_color.value();
- }
- return BoxShadowStyleValue::create(offset_x, offset_y, blur_radius, color);
- }
- RefPtr<StyleValue> Parser::parse_flex_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- if (component_values.size() == 1) {
- auto value = parse_css_value(context, component_values[0]);
- if (!value)
- return nullptr;
- switch (value->to_identifier()) {
- case ValueID::Auto: {
- auto one = NumericStyleValue::create_integer(1);
- return FlexStyleValue::create(one, one, IdentifierStyleValue::create(ValueID::Auto));
- }
- case ValueID::None: {
- auto zero = NumericStyleValue::create_integer(0);
- return FlexStyleValue::create(zero, zero, IdentifierStyleValue::create(ValueID::Auto));
- }
- default:
- break;
- }
- }
- RefPtr<StyleValue> flex_grow;
- RefPtr<StyleValue> flex_shrink;
- RefPtr<StyleValue> flex_basis;
- for (size_t i = 0; i < component_values.size(); ++i) {
- auto value = parse_css_value(context, component_values[i]);
- if (!value)
- return nullptr;
- // Zero is a valid value for basis, but only if grow and shrink are already specified.
- if (value->has_number() && value->to_number() == 0) {
- if (flex_grow && flex_shrink && !flex_basis) {
- flex_basis = LengthStyleValue::create(Length(0, Length::Type::Px));
- continue;
- }
- }
- if (property_accepts_value(PropertyID::FlexGrow, *value)) {
- if (flex_grow)
- return nullptr;
- flex_grow = value.release_nonnull();
- // Flex-shrink may optionally follow directly after.
- if (i + 1 < component_values.size()) {
- auto second_value = parse_css_value(context, component_values[i + 1]);
- if (second_value && property_accepts_value(PropertyID::FlexShrink, *second_value)) {
- flex_shrink = second_value.release_nonnull();
- i++;
- }
- }
- continue;
- }
- if (property_accepts_value(PropertyID::FlexBasis, *value)) {
- if (flex_basis)
- return nullptr;
- flex_basis = value.release_nonnull();
- continue;
- }
- return nullptr;
- }
- if (!flex_grow)
- flex_grow = property_initial_value(PropertyID::FlexGrow);
- if (!flex_shrink)
- flex_shrink = property_initial_value(PropertyID::FlexShrink);
- if (!flex_basis)
- flex_basis = property_initial_value(PropertyID::FlexBasis);
- return FlexStyleValue::create(flex_grow.release_nonnull(), flex_shrink.release_nonnull(), flex_basis.release_nonnull());
- }
- RefPtr<StyleValue> Parser::parse_flex_flow_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- if (component_values.size() > 2)
- return nullptr;
- RefPtr<StyleValue> flex_direction;
- RefPtr<StyleValue> flex_wrap;
- for (auto& part : component_values) {
- auto value = parse_css_value(context, part);
- if (!value)
- return nullptr;
- if (property_accepts_value(PropertyID::FlexDirection, *value)) {
- if (flex_direction)
- return nullptr;
- flex_direction = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::FlexWrap, *value)) {
- if (flex_wrap)
- return nullptr;
- flex_wrap = value.release_nonnull();
- continue;
- }
- }
- if (!flex_direction)
- flex_direction = property_initial_value(PropertyID::FlexDirection);
- if (!flex_wrap)
- flex_wrap = property_initial_value(PropertyID::FlexWrap);
- return FlexFlowStyleValue::create(flex_direction.release_nonnull(), flex_wrap.release_nonnull());
- }
- RefPtr<StyleValue> Parser::parse_font_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- RefPtr<StyleValue> font_style;
- RefPtr<StyleValue> font_weight;
- RefPtr<StyleValue> font_size;
- RefPtr<StyleValue> line_height;
- RefPtr<StyleValue> font_families;
- // FIXME: Implement font-stretch and font-variant.
- // FIXME: Handle system fonts. (caption, icon, menu, message-box, small-caption, status-bar)
- // Several sub-properties can be "normal", and appear in any order: style, variant, weight, stretch
- // So, we have to handle that separately.
- int normal_count = 0;
- for (size_t i = 0; i < component_values.size(); ++i) {
- auto value = parse_css_value(context, component_values[i]);
- if (!value)
- return nullptr;
- if (value->to_identifier() == ValueID::Normal) {
- normal_count++;
- continue;
- }
- // FIXME: Handle angle parameter to `oblique`: https://www.w3.org/TR/css-fonts-4/#font-style-prop
- if (property_accepts_value(PropertyID::FontStyle, *value)) {
- if (font_style)
- return nullptr;
- font_style = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::FontWeight, *value)) {
- if (font_weight)
- return nullptr;
- font_weight = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::FontSize, *value)) {
- if (font_size)
- return nullptr;
- font_size = value.release_nonnull();
- // Consume `/ line-height` if present
- if (i + 2 < component_values.size()) {
- auto maybe_solidus = component_values[i + 1];
- if (maybe_solidus.is(Token::Type::Delim) && maybe_solidus.token().delim() == "/"sv) {
- auto maybe_line_height = parse_css_value(context, component_values[i + 2]);
- if (!(maybe_line_height && property_accepts_value(PropertyID::LineHeight, *maybe_line_height)))
- return nullptr;
- line_height = maybe_line_height.release_nonnull();
- i += 2;
- }
- }
- // Consume font-families
- auto maybe_font_families = parse_font_family_value(context, component_values, i + 1);
- if (!maybe_font_families)
- return nullptr;
- font_families = maybe_font_families.release_nonnull();
- break;
- }
- return nullptr;
- }
- // Since normal is the default value for all the properties that can have it, we don't have to actually
- // set anything to normal here. It'll be set when we create the FontStyleValue below.
- // We just need to make sure we were not given more normals than will fit.
- int unset_value_count = (font_style ? 0 : 1) + (font_weight ? 0 : 1);
- if (unset_value_count < normal_count)
- return nullptr;
- if (!font_size || !font_families)
- return nullptr;
- if (!font_style)
- font_style = property_initial_value(PropertyID::FontStyle);
- if (!font_weight)
- font_weight = property_initial_value(PropertyID::FontWeight);
- if (!line_height)
- line_height = property_initial_value(PropertyID::LineHeight);
- return FontStyleValue::create(font_style.release_nonnull(), font_weight.release_nonnull(), font_size.release_nonnull(), line_height.release_nonnull(), font_families.release_nonnull());
- }
- RefPtr<StyleValue> Parser::parse_font_family_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values, size_t start_index)
- {
- auto is_generic_font_family = [](ValueID identifier) -> bool {
- switch (identifier) {
- case ValueID::Cursive:
- case ValueID::Fantasy:
- case ValueID::Monospace:
- case ValueID::Serif:
- case ValueID::SansSerif:
- case ValueID::UiMonospace:
- case ValueID::UiRounded:
- case ValueID::UiSerif:
- case ValueID::UiSansSerif:
- return true;
- default:
- return false;
- }
- };
- auto is_comma_or_eof = [&](size_t i) -> bool {
- if (i < component_values.size()) {
- auto& maybe_comma = component_values[i];
- if (!maybe_comma.is(Token::Type::Comma))
- return false;
- }
- return true;
- };
- // Note: Font-family names can either be a quoted string, or a keyword, or a series of custom-idents.
- // eg, these are equivalent:
- // font-family: my cool font\!, serif;
- // font-family: "my cool font!", serif;
- NonnullRefPtrVector<StyleValue> font_families;
- Vector<String> current_name_parts;
- for (size_t i = start_index; i < component_values.size(); ++i) {
- auto& part = component_values[i];
- if (part.is(Token::Type::String)) {
- // `font-family: my cool "font";` is invalid.
- if (!current_name_parts.is_empty())
- return nullptr;
- if (!is_comma_or_eof(i + 1))
- return nullptr;
- font_families.append(StringStyleValue::create(part.token().string()));
- i++;
- continue;
- }
- if (part.is(Token::Type::Ident)) {
- // If this is a valid identifier, it's NOT a custom-ident and can't be part of a larger name.
- auto maybe_ident = parse_css_value(context, part);
- if (maybe_ident) {
- // CSS-wide keywords are not allowed
- if (maybe_ident->is_builtin())
- return nullptr;
- if (is_generic_font_family(maybe_ident->to_identifier())) {
- // Can't have a generic-font-name as a token in an unquoted font name.
- if (!current_name_parts.is_empty())
- return nullptr;
- if (!is_comma_or_eof(i + 1))
- return nullptr;
- font_families.append(maybe_ident.release_nonnull());
- i++;
- continue;
- }
- }
- current_name_parts.append(part.token().ident());
- continue;
- }
- if (part.is(Token::Type::Comma)) {
- if (current_name_parts.is_empty())
- return nullptr;
- font_families.append(StringStyleValue::create(String::join(' ', current_name_parts)));
- current_name_parts.clear();
- // Can't have a trailing comma
- if (i + 1 == component_values.size())
- return nullptr;
- continue;
- }
- }
- if (!current_name_parts.is_empty()) {
- font_families.append(StringStyleValue::create(String::join(' ', current_name_parts)));
- current_name_parts.clear();
- }
- if (font_families.is_empty())
- return nullptr;
- return StyleValueList::create(move(font_families));
- }
- RefPtr<StyleValue> Parser::parse_list_style_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- if (component_values.size() > 3)
- return nullptr;
- RefPtr<StyleValue> list_position;
- RefPtr<StyleValue> list_image;
- RefPtr<StyleValue> list_type;
- int found_nones = 0;
- for (auto& part : component_values) {
- auto value = parse_css_value(context, part);
- if (!value)
- return nullptr;
- if (value->to_identifier() == ValueID::None) {
- found_nones++;
- continue;
- }
- if (property_accepts_value(PropertyID::ListStylePosition, *value)) {
- if (list_position)
- return nullptr;
- list_position = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::ListStyleImage, *value)) {
- if (list_image)
- return nullptr;
- list_image = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::ListStyleType, *value)) {
- if (list_type)
- return nullptr;
- list_type = value.release_nonnull();
- continue;
- }
- }
- if (found_nones > 2)
- return nullptr;
- if (found_nones == 2) {
- if (list_image || list_type)
- return nullptr;
- auto none = IdentifierStyleValue::create(ValueID::None);
- list_image = none;
- list_type = none;
- } else if (found_nones == 1) {
- if (list_image && list_type)
- return nullptr;
- auto none = IdentifierStyleValue::create(ValueID::None);
- if (!list_image)
- list_image = none;
- if (!list_type)
- list_type = none;
- }
- if (!list_position)
- list_position = property_initial_value(PropertyID::ListStylePosition);
- if (!list_image)
- list_image = property_initial_value(PropertyID::ListStyleImage);
- if (!list_type)
- list_type = property_initial_value(PropertyID::ListStyleType);
- return ListStyleStyleValue::create(list_position.release_nonnull(), list_image.release_nonnull(), list_type.release_nonnull());
- }
- RefPtr<StyleValue> Parser::parse_overflow_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- if (component_values.size() == 1) {
- auto maybe_value = parse_css_value(context, component_values.first());
- if (!maybe_value)
- return nullptr;
- auto value = maybe_value.release_nonnull();
- if (property_accepts_value(PropertyID::Overflow, *value))
- return OverflowStyleValue::create(value, value);
- return nullptr;
- }
- if (component_values.size() == 2) {
- auto maybe_x_value = parse_css_value(context, component_values[0]);
- auto maybe_y_value = parse_css_value(context, component_values[1]);
- if (!maybe_x_value || !maybe_y_value)
- return nullptr;
- auto x_value = maybe_x_value.release_nonnull();
- auto y_value = maybe_y_value.release_nonnull();
- if (!property_accepts_value(PropertyID::OverflowX, x_value) || !property_accepts_value(PropertyID::OverflowY, y_value)) {
- return nullptr;
- }
- return OverflowStyleValue::create(x_value, y_value);
- }
- return nullptr;
- }
- RefPtr<StyleValue> Parser::parse_text_decoration_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- if (component_values.size() > 3)
- return nullptr;
- RefPtr<StyleValue> decoration_line;
- RefPtr<StyleValue> decoration_style;
- RefPtr<StyleValue> decoration_color;
- // FIXME: Implement 'text-decoration-thickness' parameter. https://www.w3.org/TR/css-text-decor-4/#text-decoration-width-property
- for (auto& part : component_values) {
- auto value = parse_css_value(context, part);
- if (!value)
- return nullptr;
- if (property_accepts_value(PropertyID::TextDecorationColor, *value)) {
- if (decoration_color)
- return nullptr;
- decoration_color = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::TextDecorationLine, *value)) {
- if (decoration_line)
- return nullptr;
- decoration_line = value.release_nonnull();
- continue;
- }
- if (property_accepts_value(PropertyID::TextDecorationStyle, *value)) {
- if (decoration_style)
- return nullptr;
- decoration_style = value.release_nonnull();
- continue;
- }
- return nullptr;
- }
- if (!decoration_line)
- decoration_line = property_initial_value(PropertyID::TextDecorationLine);
- if (!decoration_style)
- decoration_style = property_initial_value(PropertyID::TextDecorationStyle);
- if (!decoration_color)
- decoration_color = property_initial_value(PropertyID::TextDecorationColor);
- return TextDecorationStyleValue::create(decoration_line.release_nonnull(), decoration_style.release_nonnull(), decoration_color.release_nonnull());
- }
- static Optional<CSS::TransformFunction> parse_transform_function_name(StringView name)
- {
- if (name == "translateY")
- return CSS::TransformFunction::TranslateY;
- return {};
- }
- RefPtr<StyleValue> Parser::parse_transform_value(ParsingContext const& context, Vector<StyleComponentValueRule> const& component_values)
- {
- NonnullRefPtrVector<StyleValue> transformations;
- for (auto& part : component_values) {
- if (!part.is_function())
- return nullptr;
- auto maybe_function = parse_transform_function_name(part.function().name());
- if (!maybe_function.has_value())
- return nullptr;
- NonnullRefPtrVector<StyleValue> values;
- for (auto& value : part.function().values()) {
- if (value.is(Token::Type::Dimension)) {
- auto maybe_length = parse_length(context, value);
- if (!maybe_length.has_value())
- return nullptr;
- values.append(LengthStyleValue::create(maybe_length.release_value()));
- } else if (value.is(Token::Type::Number)) {
- auto number = parse_numeric_value(context, value);
- values.append(number.release_nonnull());
- } else {
- dbgln("FIXME: Unsupported value type for transformation!");
- return nullptr;
- }
- }
- transformations.append(TransformationStyleValue::create(maybe_function.value(), move(values)));
- }
- return StyleValueList::create(move(transformations));
- }
- RefPtr<StyleValue> Parser::parse_as_css_value(PropertyID property_id)
- {
- auto component_values = parse_as_list_of_component_values();
- auto tokens = TokenStream(component_values);
- auto parsed_value = parse_css_value(property_id, tokens);
- if (parsed_value.is_error())
- return {};
- return parsed_value.release_value();
- }
- Result<NonnullRefPtr<StyleValue>, Parser::ParsingResult> Parser::parse_css_value(PropertyID property_id, TokenStream<StyleComponentValueRule>& tokens)
- {
- m_context.set_current_property_id(property_id);
- Vector<StyleComponentValueRule> component_values;
- while (tokens.has_next_token()) {
- auto& token = tokens.next_token();
- if (token.is(Token::Type::Semicolon)) {
- tokens.reconsume_current_input_token();
- break;
- }
- if (token.is(Token::Type::Whitespace))
- continue;
- if (token.is(Token::Type::Ident) && has_ignored_vendor_prefix(token.token().ident()))
- return ParsingResult::IncludesIgnoredVendorPrefix;
- component_values.append(token);
- }
- if (component_values.is_empty())
- return ParsingResult::SyntaxError;
- if (component_values.size() == 1) {
- if (auto parsed_value = parse_builtin_value(m_context, component_values.first()))
- return parsed_value.release_nonnull();
- }
- // Special-case property handling
- switch (property_id) {
- case PropertyID::Background:
- if (auto parsed_value = parse_background_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::BackgroundImage:
- if (auto parsed_value = parse_background_image_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::BackgroundPosition:
- if (auto parsed_value = parse_background_position_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::BackgroundRepeat:
- if (auto parsed_value = parse_background_repeat_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::Border:
- case PropertyID::BorderBottom:
- case PropertyID::BorderLeft:
- case PropertyID::BorderRight:
- case PropertyID::BorderTop:
- if (auto parsed_value = parse_border_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::BorderTopLeftRadius:
- case PropertyID::BorderTopRightRadius:
- case PropertyID::BorderBottomRightRadius:
- case PropertyID::BorderBottomLeftRadius:
- if (auto parsed_value = parse_border_radius_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::BorderRadius:
- if (auto parsed_value = parse_border_radius_shorthand_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::BoxShadow:
- if (auto parsed_value = parse_box_shadow_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::Flex:
- if (auto parsed_value = parse_flex_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::FlexFlow:
- if (auto parsed_value = parse_flex_flow_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::Font:
- if (auto parsed_value = parse_font_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::FontFamily:
- if (auto parsed_value = parse_font_family_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::ListStyle:
- if (auto parsed_value = parse_list_style_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::Overflow:
- if (auto parsed_value = parse_overflow_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::TextDecoration:
- if (auto parsed_value = parse_text_decoration_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- case PropertyID::Transform:
- if (auto parsed_value = parse_transform_value(m_context, component_values))
- return parsed_value.release_nonnull();
- return ParsingResult::SyntaxError;
- default:
- break;
- }
- if (component_values.size() == 1) {
- if (auto parsed_value = parse_css_value(m_context, component_values.first())) {
- if (property_accepts_value(property_id, *parsed_value))
- return parsed_value.release_nonnull();
- }
- return ParsingResult::SyntaxError;
- }
- // We have multiple values, so treat them as a StyleValueList.
- if (property_maximum_value_count(property_id) > 1) {
- NonnullRefPtrVector<StyleValue> parsed_values;
- for (auto& component_value : component_values) {
- auto parsed_value = parse_css_value(m_context, component_value);
- if (!parsed_value || !property_accepts_value(property_id, *parsed_value))
- return ParsingResult::SyntaxError;
- parsed_values.append(parsed_value.release_nonnull());
- }
- if (!parsed_values.is_empty() && parsed_values.size() <= property_maximum_value_count(property_id))
- return { StyleValueList::create(move(parsed_values)) };
- }
- return ParsingResult::SyntaxError;
- }
- RefPtr<StyleValue> Parser::parse_css_value(ParsingContext const& context, StyleComponentValueRule const& component_value)
- {
- if (auto builtin = parse_builtin_value(context, component_value))
- return builtin;
- if (auto dynamic = parse_dynamic_value(context, component_value))
- return dynamic;
- // We parse colors before numbers, to catch hashless hex colors.
- if (auto color = parse_color_value(context, component_value))
- return color;
- if (auto length = parse_length_value(context, component_value))
- return length;
- if (auto numeric = parse_numeric_value(context, component_value))
- return numeric;
- if (auto identifier = parse_identifier_value(context, component_value))
- return identifier;
- if (auto string = parse_string_value(context, component_value))
- return string;
- if (auto image = parse_image_value(context, component_value))
- return image;
- return {};
- }
- Optional<Selector::SimpleSelector::ANPlusBPattern> Parser::parse_a_n_plus_b_pattern(TokenStream<StyleComponentValueRule>& values)
- {
- int a = 0;
- int b = 0;
- auto syntax_error = [&]() -> Optional<Selector::SimpleSelector::ANPlusBPattern> {
- if constexpr (CSS_PARSER_DEBUG) {
- dbgln("Invalid An+B value:");
- values.dump_all_tokens();
- }
- return {};
- };
- auto make_return_value = [&]() -> Optional<Selector::SimpleSelector::ANPlusBPattern> {
- // When we think we are done, but there are more non-whitespace tokens, then it's a parse error.
- values.skip_whitespace();
- if (values.has_next_token()) {
- if constexpr (CSS_PARSER_DEBUG) {
- dbgln("Extra tokens at end of An+B value:");
- values.dump_all_tokens();
- }
- return syntax_error();
- } else {
- return Selector::SimpleSelector::ANPlusBPattern { a, b };
- }
- };
- auto is_n = [](StyleComponentValueRule const& value) -> bool {
- return value.is(Token::Type::Ident) && value.token().ident().equals_ignoring_case("n"sv);
- };
- auto is_ndash = [](StyleComponentValueRule const& value) -> bool {
- return value.is(Token::Type::Ident) && value.token().ident().equals_ignoring_case("n-"sv);
- };
- auto is_dashn = [](StyleComponentValueRule const& value) -> bool {
- return value.is(Token::Type::Ident) && value.token().ident().equals_ignoring_case("-n"sv);
- };
- auto is_dashndash = [](StyleComponentValueRule const& value) -> bool {
- return value.is(Token::Type::Ident) && value.token().ident().equals_ignoring_case("-n-"sv);
- };
- auto is_delim = [](StyleComponentValueRule const& value, StringView const& delim) -> bool {
- return value.is(Token::Type::Delim) && value.token().delim().equals_ignoring_case(delim);
- };
- auto is_n_dimension = [](StyleComponentValueRule const& value) -> bool {
- if (!value.is(Token::Type::Dimension))
- return false;
- if (value.token().number_type() != Token::NumberType::Integer)
- return false;
- if (!value.token().dimension_unit().equals_ignoring_case("n"sv))
- return false;
- return true;
- };
- auto is_ndash_dimension = [](StyleComponentValueRule const& value) -> bool {
- if (!value.is(Token::Type::Dimension))
- return false;
- if (value.token().number_type() != Token::NumberType::Integer)
- return false;
- if (!value.token().dimension_unit().equals_ignoring_case("n-"sv))
- return false;
- return true;
- };
- auto is_ndashdigit_dimension = [](StyleComponentValueRule const& value) -> bool {
- if (!value.is(Token::Type::Dimension))
- return false;
- if (value.token().number_type() != Token::NumberType::Integer)
- return false;
- auto dimension_unit = value.token().dimension_unit();
- if (!dimension_unit.starts_with("n-"sv, CaseSensitivity::CaseInsensitive))
- return false;
- for (size_t i = 2; i < dimension_unit.length(); ++i) {
- if (!is_ascii_digit(dimension_unit[i]))
- return false;
- }
- return true;
- };
- auto is_ndashdigit_ident = [](StyleComponentValueRule const& value) -> bool {
- if (!value.is(Token::Type::Ident))
- return false;
- auto ident = value.token().ident();
- if (!ident.starts_with("n-"sv, CaseSensitivity::CaseInsensitive))
- return false;
- for (size_t i = 2; i < ident.length(); ++i) {
- if (!is_ascii_digit(ident[i]))
- return false;
- }
- return true;
- };
- auto is_dashndashdigit_ident = [](StyleComponentValueRule const& value) -> bool {
- if (!value.is(Token::Type::Ident))
- return false;
- auto ident = value.token().ident();
- if (!ident.starts_with("-n-"sv, CaseSensitivity::CaseInsensitive))
- return false;
- for (size_t i = 3; i < ident.length(); ++i) {
- if (!is_ascii_digit(ident[i]))
- return false;
- }
- return true;
- };
- auto is_integer = [](StyleComponentValueRule const& value) -> bool {
- return value.is(Token::Type::Number) && value.token().is(Token::NumberType::Integer);
- };
- auto is_signed_integer = [is_integer](StyleComponentValueRule const& value) -> bool {
- return is_integer(value) && value.token().is_integer_value_signed();
- };
- auto is_signless_integer = [is_integer](StyleComponentValueRule const& value) -> bool {
- return is_integer(value) && !value.token().is_integer_value_signed();
- };
- // https://www.w3.org/TR/css-syntax-3/#the-anb-type
- // Unfortunately these can't be in the same order as in the spec.
- values.skip_whitespace();
- auto& first_value = values.next_token();
- // odd | even
- if (first_value.is(Token::Type::Ident)) {
- auto ident = first_value.token().ident();
- if (ident.equals_ignoring_case("odd")) {
- a = 2;
- b = 1;
- return make_return_value();
- } else if (ident.equals_ignoring_case("even")) {
- a = 2;
- return make_return_value();
- }
- }
- // <integer>
- if (is_integer(first_value)) {
- b = first_value.token().to_integer();
- return make_return_value();
- }
- // <n-dimension>
- // <n-dimension> <signed-integer>
- // <n-dimension> ['+' | '-'] <signless-integer>
- if (is_n_dimension(first_value)) {
- a = first_value.token().dimension_value_int();
- values.skip_whitespace();
- auto& second_value = values.next_token();
- if (second_value.is(Token::Type::EndOfFile)) {
- // <n-dimension>
- return make_return_value();
- } else if (is_signed_integer(second_value)) {
- // <n-dimension> <signed-integer>
- b = second_value.token().to_integer();
- return make_return_value();
- }
- values.skip_whitespace();
- auto& third_value = values.next_token();
- if ((is_delim(second_value, "+"sv) || is_delim(second_value, "-"sv)) && is_signless_integer(third_value)) {
- // <n-dimension> ['+' | '-'] <signless-integer>
- b = third_value.token().to_integer() * (is_delim(second_value, "+"sv) ? 1 : -1);
- return make_return_value();
- }
- return syntax_error();
- }
- // <ndash-dimension> <signless-integer>
- if (is_ndash_dimension(first_value)) {
- values.skip_whitespace();
- auto& second_value = values.next_token();
- if (is_signless_integer(second_value)) {
- a = first_value.token().dimension_value_int();
- b = -second_value.token().to_integer();
- return make_return_value();
- }
- return syntax_error();
- }
- // <ndashdigit-dimension>
- if (is_ndashdigit_dimension(first_value)) {
- auto& dimension = first_value.token();
- a = dimension.dimension_value_int();
- auto maybe_b = dimension.dimension_unit().substring_view(1).to_int();
- if (maybe_b.has_value()) {
- b = maybe_b.value();
- return make_return_value();
- }
- return syntax_error();
- }
- // <dashndashdigit-ident>
- if (is_dashndashdigit_ident(first_value)) {
- a = -1;
- auto maybe_b = first_value.token().ident().substring_view(2).to_int();
- if (maybe_b.has_value()) {
- b = maybe_b.value();
- return make_return_value();
- }
- return syntax_error();
- }
- // -n
- // -n <signed-integer>
- // -n ['+' | '-'] <signless-integer>
- if (is_dashn(first_value)) {
- a = -1;
- values.skip_whitespace();
- auto& second_value = values.next_token();
- if (second_value.is(Token::Type::EndOfFile)) {
- // -n
- return make_return_value();
- } else if (is_signed_integer(second_value)) {
- // -n <signed-integer>
- b = second_value.token().to_integer();
- return make_return_value();
- }
- values.skip_whitespace();
- auto& third_value = values.next_token();
- if ((is_delim(second_value, "+"sv) || is_delim(second_value, "-"sv)) && is_signless_integer(third_value)) {
- // -n ['+' | '-'] <signless-integer>
- b = third_value.token().to_integer() * (is_delim(second_value, "+"sv) ? 1 : -1);
- return make_return_value();
- }
- return syntax_error();
- }
- // -n- <signless-integer>
- if (is_dashndash(first_value)) {
- values.skip_whitespace();
- auto& second_value = values.next_token();
- if (is_signless_integer(second_value)) {
- a = -1;
- b = -second_value.token().to_integer();
- return make_return_value();
- }
- return syntax_error();
- }
- // All that's left now are these:
- // '+'?† n
- // '+'?† n <signed-integer>
- // '+'?† n ['+' | '-'] <signless-integer>
- // '+'?† n- <signless-integer>
- // '+'?† <ndashdigit-ident>
- // In all of these cases, the + is optional, and has no effect.
- // So, we just skip the +, and carry on.
- if (!is_delim(first_value, "+"sv)) {
- values.reconsume_current_input_token();
- // We do *not* skip whitespace here.
- }
- auto& first_after_plus = values.next_token();
- // '+'?† n
- // '+'?† n <signed-integer>
- // '+'?† n ['+' | '-'] <signless-integer>
- if (is_n(first_after_plus)) {
- a = 1;
- values.skip_whitespace();
- auto& second_value = values.next_token();
- if (second_value.is(Token::Type::EndOfFile)) {
- // '+'?† n
- return make_return_value();
- } else if (is_signed_integer(second_value)) {
- // '+'?† n <signed-integer>
- b = second_value.token().to_integer();
- return make_return_value();
- }
- values.skip_whitespace();
- auto& third_value = values.next_token();
- if ((is_delim(second_value, "+"sv) || is_delim(second_value, "-"sv)) && is_signless_integer(third_value)) {
- // '+'?† n ['+' | '-'] <signless-integer>
- b = third_value.token().to_integer() * (is_delim(second_value, "+"sv) ? 1 : -1);
- return make_return_value();
- }
- return syntax_error();
- }
- // '+'?† n- <signless-integer>
- if (is_ndash(first_after_plus)) {
- values.skip_whitespace();
- auto& second_value = values.next_token();
- if (is_signless_integer(second_value)) {
- a = 1;
- b = -second_value.token().to_integer();
- return make_return_value();
- }
- return syntax_error();
- }
- // '+'?† <ndashdigit-ident>
- if (is_ndashdigit_ident(first_after_plus)) {
- a = 1;
- auto maybe_b = first_after_plus.token().ident().substring_view(1).to_int();
- if (maybe_b.has_value()) {
- b = maybe_b.value();
- return make_return_value();
- }
- return syntax_error();
- }
- return syntax_error();
- }
- OwnPtr<CalculatedStyleValue::CalcSum> Parser::parse_calc_expression(ParsingContext const& context, Vector<StyleComponentValueRule> const& values)
- {
- auto tokens = TokenStream(values);
- return parse_calc_sum(context, tokens);
- }
- Optional<CalculatedStyleValue::CalcValue> Parser::parse_calc_value(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- auto current_token = tokens.next_token();
- if (current_token.is_block() && current_token.block().is_paren()) {
- auto block_values = TokenStream(current_token.block().values());
- auto parsed_calc_sum = parse_calc_sum(context, block_values);
- if (!parsed_calc_sum)
- return {};
- return (CalculatedStyleValue::CalcValue) { parsed_calc_sum.release_nonnull() };
- }
- if (current_token.is(Token::Type::Number)) {
- auto try_the_number = try_parse_float(current_token.token().number_string_value());
- if (try_the_number.has_value())
- return (CalculatedStyleValue::CalcValue) { try_the_number.value() };
- return {};
- }
- if (current_token.is(Token::Type::Dimension) || current_token.is(Token::Type::Percentage)) {
- auto maybe_length = parse_length(context, current_token);
- if (maybe_length.has_value() && !maybe_length.value().is_undefined())
- return (CalculatedStyleValue::CalcValue) { maybe_length.value() };
- return {};
- }
- return {};
- }
- OwnPtr<CalculatedStyleValue::CalcProductPartWithOperator> Parser::parse_calc_product_part_with_operator(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- // Note: The default value is not used or passed around.
- auto product_with_operator = make<CalculatedStyleValue::CalcProductPartWithOperator>(
- CalculatedStyleValue::CalcProductPartWithOperator::Multiply,
- CalculatedStyleValue::CalcNumberValue(0));
- tokens.skip_whitespace();
- auto& op_token = tokens.peek_token();
- if (!op_token.is(Token::Type::Delim))
- return nullptr;
- auto op = op_token.token().delim();
- if (op == "*"sv) {
- tokens.next_token();
- tokens.skip_whitespace();
- product_with_operator->op = CalculatedStyleValue::CalcProductPartWithOperator::Multiply;
- auto parsed_calc_value = parse_calc_value(context, tokens);
- if (!parsed_calc_value.has_value())
- return nullptr;
- product_with_operator->value = { parsed_calc_value.release_value() };
- } else if (op == "/"sv) {
- tokens.next_token();
- tokens.skip_whitespace();
- product_with_operator->op = CalculatedStyleValue::CalcProductPartWithOperator::Divide;
- auto parsed_calc_number_value = parse_calc_number_value(context, tokens);
- if (!parsed_calc_number_value.has_value())
- return nullptr;
- product_with_operator->value = { parsed_calc_number_value.release_value() };
- } else {
- return nullptr;
- }
- return product_with_operator;
- }
- OwnPtr<CalculatedStyleValue::CalcNumberProductPartWithOperator> Parser::parse_calc_number_product_part_with_operator(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- // Note: The default value is not used or passed around.
- auto number_product_with_operator = make<CalculatedStyleValue::CalcNumberProductPartWithOperator>(
- CalculatedStyleValue::CalcNumberProductPartWithOperator::Multiply,
- CalculatedStyleValue::CalcNumberValue(0));
- tokens.skip_whitespace();
- auto& op_token = tokens.peek_token();
- if (!op_token.is(Token::Type::Delim))
- return nullptr;
- auto op = op_token.token().delim();
- if (op == "*"sv) {
- tokens.next_token();
- tokens.skip_whitespace();
- number_product_with_operator->op = CalculatedStyleValue::CalcNumberProductPartWithOperator::Multiply;
- } else if (op == "/"sv) {
- tokens.next_token();
- tokens.skip_whitespace();
- number_product_with_operator->op = CalculatedStyleValue::CalcNumberProductPartWithOperator::Divide;
- } else {
- return nullptr;
- }
- auto parsed_calc_value = parse_calc_number_value(context, tokens);
- if (!parsed_calc_value.has_value())
- return nullptr;
- number_product_with_operator->value = parsed_calc_value.release_value();
- return number_product_with_operator;
- }
- OwnPtr<CalculatedStyleValue::CalcNumberProduct> Parser::parse_calc_number_product(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- auto calc_number_product = make<CalculatedStyleValue::CalcNumberProduct>(
- CalculatedStyleValue::CalcNumberValue(0),
- NonnullOwnPtrVector<CalculatedStyleValue::CalcNumberProductPartWithOperator> {});
- auto first_calc_number_value_or_error = parse_calc_number_value(context, tokens);
- if (!first_calc_number_value_or_error.has_value())
- return nullptr;
- calc_number_product->first_calc_number_value = first_calc_number_value_or_error.release_value();
- while (tokens.has_next_token()) {
- auto number_product_with_operator = parse_calc_number_product_part_with_operator(context, tokens);
- if (!number_product_with_operator)
- break;
- calc_number_product->zero_or_more_additional_calc_number_values.append(number_product_with_operator.release_nonnull());
- }
- return calc_number_product;
- }
- OwnPtr<CalculatedStyleValue::CalcNumberSumPartWithOperator> Parser::parse_calc_number_sum_part_with_operator(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- if (!(tokens.peek_token().is(Token::Type::Delim)
- && tokens.peek_token().token().delim().is_one_of("+"sv, "-"sv)
- && tokens.peek_token(1).is(Token::Type::Whitespace)))
- return nullptr;
- auto& token = tokens.next_token();
- tokens.skip_whitespace();
- CalculatedStyleValue::CalcNumberSumPartWithOperator::Operation op;
- auto delim = token.token().delim();
- if (delim == "+"sv)
- op = CalculatedStyleValue::CalcNumberSumPartWithOperator::Operation::Add;
- else if (delim == "-"sv)
- op = CalculatedStyleValue::CalcNumberSumPartWithOperator::Operation::Subtract;
- else
- return nullptr;
- auto calc_number_product = parse_calc_number_product(context, tokens);
- if (!calc_number_product)
- return nullptr;
- return make<CalculatedStyleValue::CalcNumberSumPartWithOperator>(op, calc_number_product.release_nonnull());
- }
- OwnPtr<CalculatedStyleValue::CalcNumberSum> Parser::parse_calc_number_sum(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- auto first_calc_number_product_or_error = parse_calc_number_product(context, tokens);
- if (!first_calc_number_product_or_error)
- return nullptr;
- NonnullOwnPtrVector<CalculatedStyleValue::CalcNumberSumPartWithOperator> additional {};
- while (tokens.has_next_token()) {
- auto calc_sum_part = parse_calc_number_sum_part_with_operator(context, tokens);
- if (!calc_sum_part)
- return nullptr;
- additional.append(calc_sum_part.release_nonnull());
- }
- tokens.skip_whitespace();
- auto calc_number_sum = make<CalculatedStyleValue::CalcNumberSum>(first_calc_number_product_or_error.release_nonnull(), move(additional));
- return calc_number_sum;
- }
- Optional<CalculatedStyleValue::CalcNumberValue> Parser::parse_calc_number_value(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- auto& first = tokens.peek_token();
- if (first.is_block() && first.block().is_paren()) {
- tokens.next_token();
- auto block_values = TokenStream(first.block().values());
- auto calc_number_sum = parse_calc_number_sum(context, block_values);
- if (calc_number_sum)
- return { calc_number_sum.release_nonnull() };
- }
- if (!first.is(Token::Type::Number))
- return {};
- tokens.next_token();
- auto try_the_number = try_parse_float(first.token().number_string_value());
- if (!try_the_number.has_value())
- return {};
- return try_the_number.value();
- }
- OwnPtr<CalculatedStyleValue::CalcProduct> Parser::parse_calc_product(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- auto calc_product = make<CalculatedStyleValue::CalcProduct>(
- CalculatedStyleValue::CalcValue(0),
- NonnullOwnPtrVector<CalculatedStyleValue::CalcProductPartWithOperator> {});
- auto first_calc_value_or_error = parse_calc_value(context, tokens);
- if (!first_calc_value_or_error.has_value())
- return nullptr;
- calc_product->first_calc_value = first_calc_value_or_error.release_value();
- while (tokens.has_next_token()) {
- auto product_with_operator = parse_calc_product_part_with_operator(context, tokens);
- if (!product_with_operator)
- break;
- calc_product->zero_or_more_additional_calc_values.append(product_with_operator.release_nonnull());
- }
- return calc_product;
- }
- OwnPtr<CalculatedStyleValue::CalcSumPartWithOperator> Parser::parse_calc_sum_part_with_operator(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- // The following has to have the shape of <Whitespace><+ or -><Whitespace>
- // But the first whitespace gets eaten in parse_calc_product_part_with_operator().
- if (!(tokens.peek_token().is(Token::Type::Delim)
- && tokens.peek_token().token().delim().is_one_of("+"sv, "-"sv)
- && tokens.peek_token(1).is(Token::Type::Whitespace)))
- return nullptr;
- auto& token = tokens.next_token();
- tokens.skip_whitespace();
- CalculatedStyleValue::CalcSumPartWithOperator::Operation op;
- auto delim = token.token().delim();
- if (delim == "+"sv)
- op = CalculatedStyleValue::CalcSumPartWithOperator::Operation::Add;
- else if (delim == "-"sv)
- op = CalculatedStyleValue::CalcSumPartWithOperator::Operation::Subtract;
- else
- return nullptr;
- auto calc_product = parse_calc_product(context, tokens);
- if (!calc_product)
- return nullptr;
- return make<CalculatedStyleValue::CalcSumPartWithOperator>(op, calc_product.release_nonnull());
- };
- OwnPtr<CalculatedStyleValue::CalcSum> Parser::parse_calc_sum(ParsingContext const& context, TokenStream<StyleComponentValueRule>& tokens)
- {
- auto parsed_calc_product = parse_calc_product(context, tokens);
- if (!parsed_calc_product)
- return nullptr;
- NonnullOwnPtrVector<CalculatedStyleValue::CalcSumPartWithOperator> additional {};
- while (tokens.has_next_token()) {
- auto calc_sum_part = parse_calc_sum_part_with_operator(context, tokens);
- if (!calc_sum_part)
- return nullptr;
- additional.append(calc_sum_part.release_nonnull());
- }
- tokens.skip_whitespace();
- return make<CalculatedStyleValue::CalcSum>(parsed_calc_product.release_nonnull(), move(additional));
- }
- bool Parser::has_ignored_vendor_prefix(StringView const& string)
- {
- if (!string.starts_with('-'))
- return false;
- if (string.starts_with("--"))
- return false;
- if (string.starts_with("-libweb-"))
- return false;
- return true;
- }
- }
- namespace Web {
- RefPtr<CSS::CSSStyleSheet> parse_css(CSS::ParsingContext const& context, StringView const& css)
- {
- if (css.is_empty())
- return CSS::CSSStyleSheet::create({});
- CSS::Parser parser(context, css);
- return parser.parse_as_stylesheet();
- }
- RefPtr<CSS::PropertyOwningCSSStyleDeclaration> parse_css_declaration(CSS::ParsingContext const& context, StringView const& css)
- {
- if (css.is_empty())
- return CSS::PropertyOwningCSSStyleDeclaration::create({}, {});
- CSS::Parser parser(context, css);
- return parser.parse_as_list_of_declarations();
- }
- RefPtr<CSS::StyleValue> parse_css_value(CSS::ParsingContext const& context, StringView const& string, CSS::PropertyID property_id)
- {
- if (string.is_empty())
- return {};
- CSS::Parser parser(context, string);
- return parser.parse_as_css_value(property_id);
- }
- RefPtr<CSS::CSSRule> parse_css_rule(CSS::ParsingContext const& context, StringView css_text)
- {
- CSS::Parser parser(context, css_text);
- return parser.parse_as_rule();
- }
- Optional<CSS::SelectorList> parse_selector(CSS::ParsingContext const& context, StringView const& selector_text)
- {
- CSS::Parser parser(context, selector_text);
- return parser.parse_as_selector();
- }
- RefPtr<CSS::MediaQuery> parse_media_query(CSS::ParsingContext const& context, StringView const& string)
- {
- CSS::Parser parser(context, string);
- return parser.parse_as_media_query();
- }
- NonnullRefPtrVector<CSS::MediaQuery> parse_media_query_list(CSS::ParsingContext const& context, StringView const& string)
- {
- CSS::Parser parser(context, string);
- return parser.parse_as_media_query_list();
- }
- RefPtr<CSS::Supports> parse_css_supports(CSS::ParsingContext const& context, StringView const& string)
- {
- if (string.is_empty())
- return {};
- CSS::Parser parser(context, string);
- return parser.parse_as_supports();
- }
- RefPtr<CSS::StyleValue> parse_html_length(DOM::Document const& document, StringView const& string)
- {
- auto integer = string.to_int();
- if (integer.has_value())
- return CSS::LengthStyleValue::create(CSS::Length::make_px(integer.value()));
- return parse_css_value(CSS::ParsingContext(document), string);
- }
- }
|