Window.cpp 74 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739
  1. /*
  2. * Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
  4. * Copyright (c) 2021-2023, Linus Groh <linusg@serenityos.org>
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause
  7. */
  8. #include <AK/Base64.h>
  9. #include <AK/DeprecatedString.h>
  10. #include <AK/GenericLexer.h>
  11. #include <AK/Utf8View.h>
  12. #include <LibJS/Runtime/AbstractOperations.h>
  13. #include <LibJS/Runtime/Accessor.h>
  14. #include <LibJS/Runtime/Completion.h>
  15. #include <LibJS/Runtime/Error.h>
  16. #include <LibJS/Runtime/FunctionObject.h>
  17. #include <LibJS/Runtime/GlobalEnvironment.h>
  18. #include <LibJS/Runtime/NativeFunction.h>
  19. #include <LibJS/Runtime/Shape.h>
  20. #include <LibTextCodec/Decoder.h>
  21. #include <LibWeb/Bindings/CSSNamespace.h>
  22. #include <LibWeb/Bindings/ExceptionOrUtils.h>
  23. #include <LibWeb/Bindings/FetchMethod.h>
  24. #include <LibWeb/Bindings/Replaceable.h>
  25. #include <LibWeb/Bindings/WindowExposedInterfaces.h>
  26. #include <LibWeb/Bindings/WindowPrototype.h>
  27. #include <LibWeb/CSS/MediaQueryList.h>
  28. #include <LibWeb/CSS/Parser/Parser.h>
  29. #include <LibWeb/CSS/ResolvedCSSStyleDeclaration.h>
  30. #include <LibWeb/CSS/Screen.h>
  31. #include <LibWeb/Crypto/Crypto.h>
  32. #include <LibWeb/DOM/Document.h>
  33. #include <LibWeb/DOM/Event.h>
  34. #include <LibWeb/DOM/EventDispatcher.h>
  35. #include <LibWeb/Fetch/Infrastructure/HTTP/Requests.h>
  36. #include <LibWeb/HTML/BrowsingContext.h>
  37. #include <LibWeb/HTML/EventHandler.h>
  38. #include <LibWeb/HTML/EventLoop/EventLoop.h>
  39. #include <LibWeb/HTML/Focus.h>
  40. #include <LibWeb/HTML/Location.h>
  41. #include <LibWeb/HTML/MessageEvent.h>
  42. #include <LibWeb/HTML/Navigator.h>
  43. #include <LibWeb/HTML/Origin.h>
  44. #include <LibWeb/HTML/PageTransitionEvent.h>
  45. #include <LibWeb/HTML/Scripting/ClassicScript.h>
  46. #include <LibWeb/HTML/Scripting/Environments.h>
  47. #include <LibWeb/HTML/Scripting/ExceptionReporter.h>
  48. #include <LibWeb/HTML/Storage.h>
  49. #include <LibWeb/HTML/StructuredSerialize.h>
  50. #include <LibWeb/HTML/Timer.h>
  51. #include <LibWeb/HTML/Window.h>
  52. #include <LibWeb/HTML/WindowProxy.h>
  53. #include <LibWeb/HighResolutionTime/Performance.h>
  54. #include <LibWeb/HighResolutionTime/TimeOrigin.h>
  55. #include <LibWeb/Infra/Base64.h>
  56. #include <LibWeb/Infra/CharacterTypes.h>
  57. #include <LibWeb/Layout/Viewport.h>
  58. #include <LibWeb/Page/Page.h>
  59. #include <LibWeb/RequestIdleCallback/IdleDeadline.h>
  60. #include <LibWeb/Selection/Selection.h>
  61. #include <LibWeb/WebAssembly/WebAssemblyObject.h>
  62. #include <LibWeb/WebIDL/AbstractOperations.h>
  63. namespace Web::HTML {
  64. // https://html.spec.whatwg.org/#run-the-animation-frame-callbacks
  65. void run_animation_frame_callbacks(DOM::Document& document, double)
  66. {
  67. // FIXME: Bring this closer to the spec.
  68. document.window().animation_frame_callback_driver().run();
  69. }
  70. class IdleCallback : public RefCounted<IdleCallback> {
  71. public:
  72. explicit IdleCallback(Function<JS::Completion(JS::NonnullGCPtr<RequestIdleCallback::IdleDeadline>)> handler, u32 handle)
  73. : m_handler(move(handler))
  74. , m_handle(handle)
  75. {
  76. }
  77. ~IdleCallback() = default;
  78. JS::Completion invoke(JS::NonnullGCPtr<RequestIdleCallback::IdleDeadline> deadline) { return m_handler(deadline); }
  79. u32 handle() const { return m_handle; }
  80. private:
  81. Function<JS::Completion(JS::NonnullGCPtr<RequestIdleCallback::IdleDeadline>)> m_handler;
  82. u32 m_handle { 0 };
  83. };
  84. WebIDL::ExceptionOr<JS::NonnullGCPtr<Window>> Window::create(JS::Realm& realm)
  85. {
  86. return MUST_OR_THROW_OOM(realm.heap().allocate<Window>(realm, realm));
  87. }
  88. Window::Window(JS::Realm& realm)
  89. : DOM::EventTarget(realm)
  90. {
  91. }
  92. void Window::visit_edges(JS::Cell::Visitor& visitor)
  93. {
  94. Base::visit_edges(visitor);
  95. visitor.visit(m_associated_document.ptr());
  96. visitor.visit(m_current_event.ptr());
  97. visitor.visit(m_performance.ptr());
  98. visitor.visit(m_screen.ptr());
  99. visitor.visit(m_location);
  100. visitor.visit(m_crypto);
  101. visitor.visit(m_navigator);
  102. for (auto& it : m_timers)
  103. visitor.visit(it.value.ptr());
  104. for (auto& plugin_object : m_pdf_viewer_plugin_objects)
  105. visitor.visit(plugin_object);
  106. for (auto& mime_type_object : m_pdf_viewer_mime_type_objects)
  107. visitor.visit(mime_type_object);
  108. }
  109. Window::~Window() = default;
  110. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#normalizing-the-feature-name
  111. static StringView normalize_feature_name(StringView name)
  112. {
  113. // For legacy reasons, there are some aliases of some feature names. To normalize a feature name name, switch on name:
  114. // "screenx"
  115. if (name == "screenx"sv) {
  116. // Return "left".
  117. return "left"sv;
  118. }
  119. // "screeny"
  120. else if (name == "screeny"sv) {
  121. // Return "top".
  122. return "top"sv;
  123. }
  124. // "innerwidth"
  125. else if (name == "innerwidth"sv) {
  126. // Return "width".
  127. return "width"sv;
  128. }
  129. // "innerheight"
  130. else if (name == "innerheight") {
  131. // Return "height".
  132. return "height"sv;
  133. }
  134. // Anything else
  135. else {
  136. // Return name.
  137. return name;
  138. }
  139. }
  140. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-window-open-features-tokenize
  141. static OrderedHashMap<DeprecatedString, DeprecatedString> tokenize_open_features(StringView features)
  142. {
  143. // 1. Let tokenizedFeatures be a new ordered map.
  144. OrderedHashMap<DeprecatedString, DeprecatedString> tokenized_features;
  145. // 2. Let position point at the first code point of features.
  146. GenericLexer lexer(features);
  147. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#feature-separator
  148. auto is_feature_separator = [](auto character) {
  149. return Infra::is_ascii_whitespace(character) || character == '=' || character == ',';
  150. };
  151. // 3. While position is not past the end of features:
  152. while (!lexer.is_eof()) {
  153. // 1. Let name be the empty string.
  154. DeprecatedString name;
  155. // 2. Let value be the empty string.
  156. DeprecatedString value;
  157. // 3. Collect a sequence of code points that are feature separators from features given position. This skips past leading separators before the name.
  158. lexer.ignore_while(is_feature_separator);
  159. // 4. Collect a sequence of code points that are not feature separators from features given position. Set name to the collected characters, converted to ASCII lowercase.
  160. name = lexer.consume_until(is_feature_separator).to_lowercase_string();
  161. // 5. Set name to the result of normalizing the feature name name.
  162. name = normalize_feature_name(name);
  163. // 6. While position is not past the end of features and the code point at position in features is not U+003D (=):
  164. // 1. If the code point at position in features is U+002C (,), or if it is not a feature separator, then break.
  165. // 2. Advance position by 1.
  166. lexer.ignore_while(Infra::is_ascii_whitespace);
  167. // 7. If the code point at position in features is a feature separator:
  168. // 1. While position is not past the end of features and the code point at position in features is a feature separator:
  169. // 1. If the code point at position in features is U+002C (,), then break.
  170. // 2. Advance position by 1.
  171. lexer.ignore_while([](auto character) { return Infra::is_ascii_whitespace(character) || character == '='; });
  172. // 2. Collect a sequence of code points that are not feature separators code points from features given position. Set value to the collected code points, converted to ASCII lowercase.
  173. value = lexer.consume_until(is_feature_separator).to_lowercase_string();
  174. // 8. If name is not the empty string, then set tokenizedFeatures[name] to value.
  175. if (!name.is_empty())
  176. tokenized_features.set(move(name), move(value));
  177. }
  178. // 4. Return tokenizedFeatures.
  179. return tokenized_features;
  180. }
  181. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#concept-window-open-features-parse-boolean
  182. static bool parse_boolean_feature(StringView value)
  183. {
  184. // 1. If value is the empty string, then return true.
  185. if (value.is_empty())
  186. return true;
  187. // 2. If value is "yes", then return true.
  188. if (value == "yes"sv)
  189. return true;
  190. // 3. If value is "true", then return true.
  191. if (value == "true"sv)
  192. return true;
  193. // 4. Let parsed be the result of parsing value as an integer.
  194. auto parsed = value.to_int<i64>();
  195. // 5. If parsed is an error, then set it to 0.
  196. if (!parsed.has_value())
  197. parsed = 0;
  198. // 6. Return false if parsed is 0, and true otherwise.
  199. return *parsed != 0;
  200. }
  201. // https://html.spec.whatwg.org/multipage/window-object.html#popup-window-is-requested
  202. static bool check_if_a_popup_window_is_requested(OrderedHashMap<DeprecatedString, DeprecatedString> const& tokenized_features)
  203. {
  204. // 1. If tokenizedFeatures is empty, then return false.
  205. if (tokenized_features.is_empty())
  206. return false;
  207. // 2. If tokenizedFeatures["popup"] exists, then return the result of parsing tokenizedFeatures["popup"] as a boolean feature.
  208. if (auto popup_feature = tokenized_features.get("popup"sv); popup_feature.has_value())
  209. return parse_boolean_feature(*popup_feature);
  210. // https://html.spec.whatwg.org/multipage/window-object.html#window-feature-is-set
  211. auto check_if_a_window_feature_is_set = [&](StringView feature_name, bool default_value) {
  212. // 1. If tokenizedFeatures[featureName] exists, then return the result of parsing tokenizedFeatures[featureName] as a boolean feature.
  213. if (auto feature = tokenized_features.get(feature_name); feature.has_value())
  214. return parse_boolean_feature(*feature);
  215. // 2. Return defaultValue.
  216. return default_value;
  217. };
  218. // 3. Let location be the result of checking if a window feature is set, given tokenizedFeatures, "location", and false.
  219. auto location = check_if_a_window_feature_is_set("location"sv, false);
  220. // 4. Let toolbar be the result of checking if a window feature is set, given tokenizedFeatures, "toolbar", and false.
  221. auto toolbar = check_if_a_window_feature_is_set("toolbar"sv, false);
  222. // 5. If location and toolbar are both false, then return true.
  223. if (!location && !toolbar)
  224. return true;
  225. // 6. Let menubar be the result of checking if a window feature is set, given tokenizedFeatures, menubar", and false.
  226. auto menubar = check_if_a_window_feature_is_set("menubar"sv, false);
  227. // 7. If menubar is false, then return true.
  228. if (!menubar)
  229. return true;
  230. // 8. Let resizable be the result of checking if a window feature is set, given tokenizedFeatures, "resizable", and true.
  231. auto resizable = check_if_a_window_feature_is_set("resizable"sv, true);
  232. // 9. If resizable is false, then return true.
  233. if (!resizable)
  234. return true;
  235. // 10. Let scrollbars be the result of checking if a window feature is set, given tokenizedFeatures, "scrollbars", and false.
  236. auto scrollbars = check_if_a_window_feature_is_set("scrollbars"sv, false);
  237. // 11. If scrollbars is false, then return true.
  238. if (!scrollbars)
  239. return true;
  240. // 12. Let status be the result of checking if a window feature is set, given tokenizedFeatures, "status", and false.
  241. auto status = check_if_a_window_feature_is_set("status"sv, false);
  242. // 13. If status is false, then return true.
  243. if (!status)
  244. return true;
  245. // 14. Return false.
  246. return false;
  247. }
  248. // FIXME: This is based on the old 'browsing context' concept, which was replaced with 'navigable'
  249. // https://html.spec.whatwg.org/multipage/window-object.html#window-open-steps
  250. WebIDL::ExceptionOr<JS::GCPtr<HTML::WindowProxy>> Window::open_impl(StringView url, StringView target, StringView features)
  251. {
  252. auto& vm = this->vm();
  253. // 1. If the event loop's termination nesting level is nonzero, return null.
  254. if (HTML::main_thread_event_loop().termination_nesting_level() != 0)
  255. return nullptr;
  256. // 2. Let source browsing context be the entry global object's browsing context.
  257. auto* source_browsing_context = verify_cast<Window>(entry_global_object()).browsing_context();
  258. // 3. If target is the empty string, then set target to "_blank".
  259. if (target.is_empty())
  260. target = "_blank"sv;
  261. // 4. Let tokenizedFeatures be the result of tokenizing features.
  262. auto tokenized_features = tokenize_open_features(features);
  263. // 5. Let noopener and noreferrer be false.
  264. auto no_opener = false;
  265. auto no_referrer = false;
  266. // 6. If tokenizedFeatures["noopener"] exists, then:
  267. if (auto no_opener_feature = tokenized_features.get("noopener"sv); no_opener_feature.has_value()) {
  268. // 1. Set noopener to the result of parsing tokenizedFeatures["noopener"] as a boolean feature.
  269. no_opener = parse_boolean_feature(*no_opener_feature);
  270. // 2. Remove tokenizedFeatures["noopener"].
  271. tokenized_features.remove("noopener"sv);
  272. }
  273. // 7. If tokenizedFeatures["noreferrer"] exists, then:
  274. if (auto no_referrer_feature = tokenized_features.get("noreferrer"sv); no_referrer_feature.has_value()) {
  275. // 1. Set noreferrer to the result of parsing tokenizedFeatures["noreferrer"] as a boolean feature.
  276. no_referrer = parse_boolean_feature(*no_referrer_feature);
  277. // 2. Remove tokenizedFeatures["noreferrer"].
  278. tokenized_features.remove("noreferrer"sv);
  279. }
  280. // 8. If noreferrer is true, then set noopener to true.
  281. if (no_referrer)
  282. no_opener = true;
  283. // 9. Let target browsing context and windowType be the result of applying the rules for choosing a browsing context given target, source browsing context, and noopener.
  284. auto [target_browsing_context, window_type] = source_browsing_context->choose_a_browsing_context(target, no_opener);
  285. // 10. If target browsing context is null, then return null.
  286. if (target_browsing_context == nullptr)
  287. return nullptr;
  288. // 11. If windowType is either "new and unrestricted" or "new with no opener", then:
  289. if (window_type == BrowsingContext::WindowType::NewAndUnrestricted || window_type == BrowsingContext::WindowType::NewWithNoOpener) {
  290. // 1. Set the target browsing context's is popup to the result of checking if a popup window is requested, given tokenizedFeatures.
  291. target_browsing_context->set_is_popup(check_if_a_popup_window_is_requested(tokenized_features));
  292. // FIXME: 2. Set up browsing context features for target browsing context given tokenizedFeatures. [CSSOMVIEW]
  293. // NOTE: While this is not implemented yet, all of observable actions taken by this operation are optional (implementation-defined).
  294. // 3. Let urlRecord be the URL record about:blank.
  295. auto url_record = AK::URL("about:blank"sv);
  296. // 4. If url is not the empty string, then parse url relative to the entry settings object, and set urlRecord to the resulting URL record, if any. If the parse a URL algorithm failed, then throw a "SyntaxError" DOMException.
  297. if (!url.is_empty()) {
  298. url_record = entry_settings_object().parse_url(url);
  299. if (!url_record.is_valid())
  300. return WebIDL::SyntaxError::create(realm(), "URL is not valid");
  301. }
  302. // FIXME: 5. If urlRecord matches about:blank, then perform the URL and history update steps given target browsing context's active document and urlRecord.
  303. // 6. Otherwise:
  304. else {
  305. // 1. Let request be a new request whose URL is urlRecord.
  306. auto request = Fetch::Infrastructure::Request::create(vm);
  307. request->set_url(url_record);
  308. // 2. If noreferrer is true, then set request's referrer to "no-referrer".
  309. if (no_referrer)
  310. request->set_referrer(Fetch::Infrastructure::Request::Referrer::NoReferrer);
  311. // 3. Navigate target browsing context to request, with exceptionsEnabled set to true and the source browsing context set to source browsing context.
  312. TRY(target_browsing_context->navigate(request, *source_browsing_context, true));
  313. }
  314. }
  315. // 12. Otherwise:
  316. else {
  317. // 1. If url is not the empty string, then:
  318. if (!url.is_empty()) {
  319. // 1. Let urlRecord be the URL record about:blank.
  320. auto url_record = AK::URL("about:blank"sv);
  321. // 2. Parse url relative to the entry settings object, and set urlRecord to the resulting URL record, if any. If the parse a URL algorithm failed, then throw a "SyntaxError" DOMException.
  322. url_record = entry_settings_object().parse_url(url);
  323. if (!url_record.is_valid())
  324. return WebIDL::SyntaxError::create(realm(), "URL is not valid");
  325. // 3. Let request be a new request whose URL is urlRecord.
  326. auto request = Fetch::Infrastructure::Request::create(vm);
  327. request->set_url(url_record);
  328. // 4. If noreferrer is true, then set request's referrer to "noreferrer".
  329. if (no_referrer)
  330. request->set_referrer(Fetch::Infrastructure::Request::Referrer::NoReferrer);
  331. // 5. Navigate target browsing context to request, with exceptionsEnabled set to true and the source browsing context set to source browsing context.
  332. TRY(target_browsing_context->navigate(request, *source_browsing_context, true));
  333. }
  334. // 2. If noopener is false, then set target browsing context's opener browsing context to source browsing context.
  335. if (!no_opener)
  336. target_browsing_context->set_opener_browsing_context(source_browsing_context);
  337. }
  338. // 13. If noopener is true or windowType is "new with no opener", then return null.
  339. if (no_opener || window_type == BrowsingContext::WindowType::NewWithNoOpener)
  340. return nullptr;
  341. // 14. Return target browsing context's WindowProxy object.
  342. return target_browsing_context->window_proxy();
  343. }
  344. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout
  345. i32 Window::set_timeout_impl(TimerHandler handler, i32 timeout, JS::MarkedVector<JS::Value> arguments)
  346. {
  347. return run_timer_initialization_steps(move(handler), timeout, move(arguments), Repeat::No);
  348. }
  349. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-setinterval
  350. i32 Window::set_interval_impl(TimerHandler handler, i32 timeout, JS::MarkedVector<JS::Value> arguments)
  351. {
  352. return run_timer_initialization_steps(move(handler), timeout, move(arguments), Repeat::Yes);
  353. }
  354. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-cleartimeout
  355. void Window::clear_timeout_impl(i32 id)
  356. {
  357. m_timers.remove(id);
  358. }
  359. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-clearinterval
  360. void Window::clear_interval_impl(i32 id)
  361. {
  362. m_timers.remove(id);
  363. }
  364. void Window::deallocate_timer_id(Badge<Timer>, i32 id)
  365. {
  366. m_timer_id_allocator.deallocate(id);
  367. }
  368. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timer-initialisation-steps
  369. i32 Window::run_timer_initialization_steps(TimerHandler handler, i32 timeout, JS::MarkedVector<JS::Value> arguments, Repeat repeat, Optional<i32> previous_id)
  370. {
  371. // 1. Let thisArg be global if that is a WorkerGlobalScope object; otherwise let thisArg be the WindowProxy that corresponds to global.
  372. // 2. If previousId was given, let id be previousId; otherwise, let id be an implementation-defined integer that is greater than zero and does not already exist in global's map of active timers.
  373. auto id = previous_id.has_value() ? previous_id.value() : m_timer_id_allocator.allocate();
  374. // FIXME: 3. If the surrounding agent's event loop's currently running task is a task that was created by this algorithm, then let nesting level be the task's timer nesting level. Otherwise, let nesting level be zero.
  375. // 4. If timeout is less than 0, then set timeout to 0.
  376. if (timeout < 0)
  377. timeout = 0;
  378. // FIXME: 5. If nesting level is greater than 5, and timeout is less than 4, then set timeout to 4.
  379. // 6. Let callerRealm be the current Realm Record, and calleeRealm be global's relevant Realm.
  380. // FIXME: Implement this when step 9.2 is implemented.
  381. // 7. Let initiating script be the active script.
  382. // 8. Assert: initiating script is not null, since this algorithm is always called from some script.
  383. // 9. Let task be a task that runs the following substeps:
  384. JS::SafeFunction<void()> task = [this, handler = move(handler), timeout, arguments = move(arguments), repeat, id] {
  385. // 1. If id does not exist in global's map of active timers, then abort these steps.
  386. if (!m_timers.contains(id))
  387. return;
  388. handler.visit(
  389. // 2. If handler is a Function, then invoke handler given arguments with the callback this value set to thisArg. If this throws an exception, catch it, and report the exception.
  390. [&](JS::Handle<WebIDL::CallbackType> callback) {
  391. if (auto result = WebIDL::invoke_callback(*callback, this, arguments); result.is_error())
  392. HTML::report_exception(result, realm());
  393. },
  394. // 3. Otherwise:
  395. [&](DeprecatedString const& source) {
  396. // 1. Assert: handler is a string.
  397. // FIXME: 2. Perform HostEnsureCanCompileStrings(callerRealm, calleeRealm). If this throws an exception, catch it, report the exception, and abort these steps.
  398. // 3. Let settings object be global's relevant settings object.
  399. auto& settings_object = associated_document().relevant_settings_object();
  400. // 4. Let base URL be initiating script's base URL.
  401. auto url = associated_document().url();
  402. // 5. Assert: base URL is not null, as initiating script is a classic script or a JavaScript module script.
  403. // 6. Let fetch options be a script fetch options whose cryptographic nonce is initiating script's fetch options's cryptographic nonce, integrity metadata is the empty string, parser metadata is "not-parser-inserted", credentials mode is initiating script's fetch options's credentials mode, and referrer policy is initiating script's fetch options's referrer policy.
  404. // 7. Let script be the result of creating a classic script given handler, settings object, base URL, and fetch options.
  405. auto script = HTML::ClassicScript::create(url.basename(), source, settings_object, url);
  406. // 8. Run the classic script script.
  407. (void)script->run();
  408. });
  409. // 4. If id does not exist in global's map of active timers, then abort these steps.
  410. if (!m_timers.contains(id))
  411. return;
  412. switch (repeat) {
  413. // 5. If repeat is true, then perform the timer initialization steps again, given global, handler, timeout, arguments, true, and id.
  414. case Repeat::Yes:
  415. run_timer_initialization_steps(handler, timeout, move(arguments), repeat, id);
  416. break;
  417. // 6. Otherwise, remove global's map of active timers[id].
  418. case Repeat::No:
  419. m_timers.remove(id);
  420. break;
  421. }
  422. };
  423. // FIXME: 10. Increment nesting level by one.
  424. // FIXME: 11. Set task's timer nesting level to nesting level.
  425. // 12. Let completionStep be an algorithm step which queues a global task on the timer task source given global to run task.
  426. JS::SafeFunction<void()> completion_step = [this, task = move(task)]() mutable {
  427. HTML::queue_global_task(HTML::Task::Source::TimerTask, *this, move(task));
  428. };
  429. // 13. Run steps after a timeout given global, "setTimeout/setInterval", timeout, completionStep, and id.
  430. auto timer = Timer::create(*this, timeout, move(completion_step), id);
  431. m_timers.set(id, timer);
  432. timer->start();
  433. // 14. Return id.
  434. return id;
  435. }
  436. // https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#run-the-animation-frame-callbacks
  437. i32 Window::request_animation_frame_impl(WebIDL::CallbackType& js_callback)
  438. {
  439. // FIXME: `now` is supposed to be passed in
  440. auto now = HighResolutionTime::unsafe_shared_current_time();
  441. return m_animation_frame_callback_driver.add([this, now, js_callback = JS::make_handle(js_callback)](auto) {
  442. // 3. Invoke callback, passing now as the only argument,
  443. auto result = WebIDL::invoke_callback(*js_callback, {}, JS::Value(now));
  444. // and if an exception is thrown, report the exception.
  445. if (result.is_error())
  446. HTML::report_exception(result, realm());
  447. });
  448. }
  449. void Window::cancel_animation_frame_impl(i32 id)
  450. {
  451. m_animation_frame_callback_driver.remove(id);
  452. }
  453. void Window::did_set_location_href(Badge<HTML::Location>, AK::URL const& new_href)
  454. {
  455. auto* browsing_context = associated_document().browsing_context();
  456. if (!browsing_context)
  457. return;
  458. browsing_context->loader().load(new_href, FrameLoader::Type::Navigation);
  459. }
  460. void Window::did_call_location_reload(Badge<HTML::Location>)
  461. {
  462. auto* browsing_context = associated_document().browsing_context();
  463. if (!browsing_context)
  464. return;
  465. browsing_context->loader().load(associated_document().url(), FrameLoader::Type::Reload);
  466. }
  467. void Window::did_call_location_replace(Badge<HTML::Location>, DeprecatedString url)
  468. {
  469. auto* browsing_context = associated_document().browsing_context();
  470. if (!browsing_context)
  471. return;
  472. auto new_url = associated_document().parse_url(url);
  473. browsing_context->loader().load(move(new_url), FrameLoader::Type::Navigation);
  474. }
  475. bool Window::dispatch_event(DOM::Event& event)
  476. {
  477. return DOM::EventDispatcher::dispatch(*this, event, true);
  478. }
  479. Page* Window::page()
  480. {
  481. return associated_document().page();
  482. }
  483. Page const* Window::page() const
  484. {
  485. return associated_document().page();
  486. }
  487. CSS::CSSStyleDeclaration* Window::get_computed_style_impl(DOM::Element& element) const
  488. {
  489. return CSS::ResolvedCSSStyleDeclaration::create(element).release_value_but_fixme_should_propagate_errors().ptr();
  490. }
  491. Optional<CSS::MediaFeatureValue> Window::query_media_feature(CSS::MediaFeatureID media_feature) const
  492. {
  493. // FIXME: Many of these should be dependent on the hardware
  494. // https://www.w3.org/TR/mediaqueries-5/#media-descriptor-table
  495. switch (media_feature) {
  496. case CSS::MediaFeatureID::AnyHover:
  497. return CSS::MediaFeatureValue(CSS::ValueID::Hover);
  498. case CSS::MediaFeatureID::AnyPointer:
  499. return CSS::MediaFeatureValue(CSS::ValueID::Fine);
  500. case CSS::MediaFeatureID::AspectRatio:
  501. return CSS::MediaFeatureValue(CSS::Ratio(inner_width(), inner_height()));
  502. case CSS::MediaFeatureID::Color:
  503. return CSS::MediaFeatureValue(8);
  504. case CSS::MediaFeatureID::ColorGamut:
  505. return CSS::MediaFeatureValue(CSS::ValueID::Srgb);
  506. case CSS::MediaFeatureID::ColorIndex:
  507. return CSS::MediaFeatureValue(0);
  508. // FIXME: device-aspect-ratio
  509. case CSS::MediaFeatureID::DeviceHeight:
  510. if (auto* page = this->page()) {
  511. return CSS::MediaFeatureValue(CSS::Length::make_px(page->web_exposed_screen_area().height().value()));
  512. }
  513. return CSS::MediaFeatureValue(0);
  514. case CSS::MediaFeatureID::DeviceWidth:
  515. if (auto* page = this->page()) {
  516. return CSS::MediaFeatureValue(CSS::Length::make_px(page->web_exposed_screen_area().width().value()));
  517. }
  518. return CSS::MediaFeatureValue(0);
  519. case CSS::MediaFeatureID::DisplayMode:
  520. // FIXME: Detect if window is fullscreen
  521. return CSS::MediaFeatureValue(CSS::ValueID::Browser);
  522. case CSS::MediaFeatureID::DynamicRange:
  523. return CSS::MediaFeatureValue(CSS::ValueID::Standard);
  524. case CSS::MediaFeatureID::EnvironmentBlending:
  525. return CSS::MediaFeatureValue(CSS::ValueID::Opaque);
  526. case CSS::MediaFeatureID::ForcedColors:
  527. return CSS::MediaFeatureValue(CSS::ValueID::None);
  528. case CSS::MediaFeatureID::Grid:
  529. return CSS::MediaFeatureValue(0);
  530. case CSS::MediaFeatureID::Height:
  531. return CSS::MediaFeatureValue(CSS::Length::make_px(inner_height()));
  532. case CSS::MediaFeatureID::HorizontalViewportSegments:
  533. return CSS::MediaFeatureValue(1);
  534. case CSS::MediaFeatureID::Hover:
  535. return CSS::MediaFeatureValue(CSS::ValueID::Hover);
  536. case CSS::MediaFeatureID::InvertedColors:
  537. return CSS::MediaFeatureValue(CSS::ValueID::None);
  538. case CSS::MediaFeatureID::Monochrome:
  539. return CSS::MediaFeatureValue(0);
  540. case CSS::MediaFeatureID::NavControls:
  541. return CSS::MediaFeatureValue(CSS::ValueID::Back);
  542. case CSS::MediaFeatureID::Orientation:
  543. return CSS::MediaFeatureValue(inner_height() >= inner_width() ? CSS::ValueID::Portrait : CSS::ValueID::Landscape);
  544. case CSS::MediaFeatureID::OverflowBlock:
  545. return CSS::MediaFeatureValue(CSS::ValueID::Scroll);
  546. case CSS::MediaFeatureID::OverflowInline:
  547. return CSS::MediaFeatureValue(CSS::ValueID::Scroll);
  548. case CSS::MediaFeatureID::Pointer:
  549. return CSS::MediaFeatureValue(CSS::ValueID::Fine);
  550. case CSS::MediaFeatureID::PrefersColorScheme: {
  551. if (auto* page = this->page()) {
  552. switch (page->preferred_color_scheme()) {
  553. case CSS::PreferredColorScheme::Light:
  554. return CSS::MediaFeatureValue(CSS::ValueID::Light);
  555. case CSS::PreferredColorScheme::Dark:
  556. return CSS::MediaFeatureValue(CSS::ValueID::Dark);
  557. case CSS::PreferredColorScheme::Auto:
  558. default:
  559. return CSS::MediaFeatureValue(page->palette().is_dark() ? CSS::ValueID::Dark : CSS::ValueID::Light);
  560. }
  561. }
  562. return CSS::MediaFeatureValue(CSS::ValueID::Light);
  563. }
  564. case CSS::MediaFeatureID::PrefersContrast:
  565. // FIXME: Make this a preference
  566. return CSS::MediaFeatureValue(CSS::ValueID::NoPreference);
  567. case CSS::MediaFeatureID::PrefersReducedData:
  568. // FIXME: Make this a preference
  569. return CSS::MediaFeatureValue(CSS::ValueID::NoPreference);
  570. case CSS::MediaFeatureID::PrefersReducedMotion:
  571. // FIXME: Make this a preference
  572. return CSS::MediaFeatureValue(CSS::ValueID::NoPreference);
  573. case CSS::MediaFeatureID::PrefersReducedTransparency:
  574. // FIXME: Make this a preference
  575. return CSS::MediaFeatureValue(CSS::ValueID::NoPreference);
  576. // FIXME: resolution
  577. case CSS::MediaFeatureID::Scan:
  578. return CSS::MediaFeatureValue(CSS::ValueID::Progressive);
  579. case CSS::MediaFeatureID::Scripting:
  580. if (associated_document().is_scripting_enabled())
  581. return CSS::MediaFeatureValue(CSS::ValueID::Enabled);
  582. return CSS::MediaFeatureValue(CSS::ValueID::None);
  583. case CSS::MediaFeatureID::Update:
  584. return CSS::MediaFeatureValue(CSS::ValueID::Fast);
  585. case CSS::MediaFeatureID::VerticalViewportSegments:
  586. return CSS::MediaFeatureValue(1);
  587. case CSS::MediaFeatureID::VideoColorGamut:
  588. return CSS::MediaFeatureValue(CSS::ValueID::Srgb);
  589. case CSS::MediaFeatureID::VideoDynamicRange:
  590. return CSS::MediaFeatureValue(CSS::ValueID::Standard);
  591. case CSS::MediaFeatureID::Width:
  592. return CSS::MediaFeatureValue(CSS::Length::make_px(inner_width()));
  593. default:
  594. break;
  595. }
  596. return {};
  597. }
  598. // https://html.spec.whatwg.org/#fire-a-page-transition-event
  599. void Window::fire_a_page_transition_event(DeprecatedFlyString const& event_name, bool persisted)
  600. {
  601. // To fire a page transition event named eventName at a Window window with a boolean persisted,
  602. // fire an event named eventName at window, using PageTransitionEvent,
  603. // with the persisted attribute initialized to persisted,
  604. HTML::PageTransitionEventInit event_init {};
  605. event_init.persisted = persisted;
  606. auto event = HTML::PageTransitionEvent::create(associated_document().realm(), String::from_deprecated_string(event_name).release_value_but_fixme_should_propagate_errors(), event_init).release_value_but_fixme_should_propagate_errors();
  607. // ...the cancelable attribute initialized to true,
  608. event->set_cancelable(true);
  609. // the bubbles attribute initialized to true,
  610. event->set_bubbles(true);
  611. // and legacy target override flag set.
  612. dispatch_event(event);
  613. }
  614. // https://html.spec.whatwg.org/#dom-queuemicrotask
  615. void Window::queue_microtask_impl(WebIDL::CallbackType& callback)
  616. {
  617. // The queueMicrotask(callback) method must queue a microtask to invoke callback,
  618. HTML::queue_a_microtask(&associated_document(), [this, &callback] {
  619. auto result = WebIDL::invoke_callback(callback, {});
  620. // and if callback throws an exception, report the exception.
  621. if (result.is_error())
  622. HTML::report_exception(result, realm());
  623. });
  624. }
  625. float Window::device_pixel_ratio() const
  626. {
  627. // FIXME: Return 2.0f if we're in HiDPI mode!
  628. return 1.0f;
  629. }
  630. // https://drafts.csswg.org/cssom-view/#dom-window-screenx
  631. int Window::screen_x() const
  632. {
  633. // The screenX and screenLeft attributes must return the x-coordinate, relative to the origin of the Web-exposed screen area,
  634. // of the left of the client window as number of CSS pixels, or zero if there is no such thing.
  635. if (auto* page = this->page())
  636. return page->window_position().x().value();
  637. return 0;
  638. }
  639. // https://drafts.csswg.org/cssom-view/#dom-window-screeny
  640. int Window::screen_y() const
  641. {
  642. // The screenY and screenTop attributes must return the y-coordinate, relative to the origin of the screen of the Web-exposed screen area,
  643. // of the top of the client window as number of CSS pixels, or zero if there is no such thing.
  644. if (auto* page = this->page())
  645. return page->window_position().y().value();
  646. return 0;
  647. }
  648. // https://drafts.csswg.org/cssom-view/#dom-window-outerwidth
  649. int Window::outer_width() const
  650. {
  651. // The outerWidth attribute must return the width of the client window. If there is no client window this attribute must return zero.
  652. if (auto* page = this->page())
  653. return page->window_size().width().value();
  654. return 0;
  655. }
  656. // https://drafts.csswg.org/cssom-view/#dom-window-screeny
  657. int Window::outer_height() const
  658. {
  659. // The outerHeight attribute must return the height of the client window. If there is no client window this attribute must return zero.
  660. if (auto* page = this->page())
  661. return page->window_size().height().value();
  662. return 0;
  663. }
  664. // https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage
  665. JS::NonnullGCPtr<HTML::Storage> Window::local_storage()
  666. {
  667. // FIXME: Implement according to spec.
  668. static HashMap<Origin, JS::Handle<HTML::Storage>> local_storage_per_origin;
  669. auto storage = local_storage_per_origin.ensure(associated_document().origin(), [this]() -> JS::Handle<HTML::Storage> {
  670. return *HTML::Storage::create(realm()).release_value_but_fixme_should_propagate_errors();
  671. });
  672. return *storage;
  673. }
  674. // https://html.spec.whatwg.org/multipage/webstorage.html#dom-sessionstorage
  675. JS::NonnullGCPtr<HTML::Storage> Window::session_storage()
  676. {
  677. // FIXME: Implement according to spec.
  678. static HashMap<Origin, JS::Handle<HTML::Storage>> session_storage_per_origin;
  679. auto storage = session_storage_per_origin.ensure(associated_document().origin(), [this]() -> JS::Handle<HTML::Storage> {
  680. return *HTML::Storage::create(realm()).release_value_but_fixme_should_propagate_errors();
  681. });
  682. return *storage;
  683. }
  684. // https://html.spec.whatwg.org/multipage/structured-data.html#dom-structuredclone
  685. WebIDL::ExceptionOr<JS::Value> Window::structured_clone_impl(JS::VM& vm, JS::Value message)
  686. {
  687. auto serialized = TRY(structured_serialize(vm, message));
  688. return MUST(structured_deserialize(vm, serialized, *vm.current_realm(), {}));
  689. }
  690. // https://html.spec.whatwg.org/multipage/interaction.html#transient-activation
  691. bool Window::has_transient_activation() const
  692. {
  693. // FIXME: Implement this.
  694. return false;
  695. }
  696. // https://w3c.github.io/requestidlecallback/#start-an-idle-period-algorithm
  697. void Window::start_an_idle_period()
  698. {
  699. // 1. Optionally, if the user agent determines the idle period should be delayed, return from this algorithm.
  700. // 2. Let pending_list be window's list of idle request callbacks.
  701. auto& pending_list = m_idle_request_callbacks;
  702. // 3. Let run_list be window's list of runnable idle callbacks.
  703. auto& run_list = m_runnable_idle_callbacks;
  704. run_list.extend(pending_list);
  705. // 4. Clear pending_list.
  706. pending_list.clear();
  707. // FIXME: This might not agree with the spec, but currently we use 100% CPU if we keep queueing tasks
  708. if (run_list.is_empty())
  709. return;
  710. // 5. Queue a task on the queue associated with the idle-task task source,
  711. // which performs the steps defined in the invoke idle callbacks algorithm with window and getDeadline as parameters.
  712. HTML::queue_global_task(HTML::Task::Source::IdleTask, *this, [this] {
  713. invoke_idle_callbacks();
  714. });
  715. }
  716. // https://w3c.github.io/requestidlecallback/#invoke-idle-callbacks-algorithm
  717. void Window::invoke_idle_callbacks()
  718. {
  719. auto& event_loop = main_thread_event_loop();
  720. // 1. If the user-agent believes it should end the idle period early due to newly scheduled high-priority work, return from the algorithm.
  721. // 2. Let now be the current time.
  722. auto now = HighResolutionTime::unsafe_shared_current_time();
  723. // 3. If now is less than the result of calling getDeadline and the window's list of runnable idle callbacks is not empty:
  724. if (now < event_loop.compute_deadline() && !m_runnable_idle_callbacks.is_empty()) {
  725. // 1. Pop the top callback from window's list of runnable idle callbacks.
  726. auto callback = m_runnable_idle_callbacks.take_first();
  727. // 2. Let deadlineArg be a new IdleDeadline whose [get deadline time algorithm] is getDeadline.
  728. auto deadline_arg = RequestIdleCallback::IdleDeadline::create(realm()).release_value_but_fixme_should_propagate_errors();
  729. // 3. Call callback with deadlineArg as its argument. If an uncaught runtime script error occurs, then report the exception.
  730. auto result = callback->invoke(deadline_arg);
  731. if (result.is_error())
  732. HTML::report_exception(result, realm());
  733. // 4. If window's list of runnable idle callbacks is not empty, queue a task which performs the steps
  734. // in the invoke idle callbacks algorithm with getDeadline and window as a parameters and return from this algorithm
  735. HTML::queue_global_task(HTML::Task::Source::IdleTask, *this, [this] {
  736. invoke_idle_callbacks();
  737. });
  738. }
  739. }
  740. // https://w3c.github.io/requestidlecallback/#the-requestidlecallback-method
  741. u32 Window::request_idle_callback_impl(WebIDL::CallbackType& callback)
  742. {
  743. // 1. Let window be this Window object.
  744. auto& window = *this;
  745. // 2. Increment the window's idle callback identifier by one.
  746. window.m_idle_callback_identifier++;
  747. // 3. Let handle be the current value of window's idle callback identifier.
  748. auto handle = window.m_idle_callback_identifier;
  749. // 4. Push callback to the end of window's list of idle request callbacks, associated with handle.
  750. auto handler = [callback = JS::make_handle(callback)](JS::NonnullGCPtr<RequestIdleCallback::IdleDeadline> deadline) -> JS::Completion {
  751. return WebIDL::invoke_callback(const_cast<WebIDL::CallbackType&>(*callback), {}, deadline.ptr());
  752. };
  753. window.m_idle_request_callbacks.append(adopt_ref(*new IdleCallback(move(handler), handle)));
  754. // 5. Return handle and then continue running this algorithm asynchronously.
  755. return handle;
  756. // FIXME: 6. If the timeout property is present in options and has a positive value:
  757. // FIXME: 1. Wait for timeout milliseconds.
  758. // FIXME: 2. Wait until all invocations of this algorithm, whose timeout added to their posted time occurred before this one's, have completed.
  759. // FIXME: 3. Optionally, wait a further user-agent defined length of time.
  760. // FIXME: 4. Queue a task on the queue associated with the idle-task task source, which performs the invoke idle callback timeout algorithm, passing handle and window as arguments.
  761. }
  762. // https://w3c.github.io/requestidlecallback/#the-cancelidlecallback-method
  763. void Window::cancel_idle_callback_impl(u32 handle)
  764. {
  765. // 1. Let window be this Window object.
  766. auto& window = *this;
  767. // 2. Find the entry in either the window's list of idle request callbacks or list of runnable idle callbacks
  768. // that is associated with the value handle.
  769. // 3. If there is such an entry, remove it from both window's list of idle request callbacks and the list of runnable idle callbacks.
  770. window.m_idle_request_callbacks.remove_first_matching([handle](auto& callback) {
  771. return callback->handle() == handle;
  772. });
  773. window.m_runnable_idle_callbacks.remove_first_matching([handle](auto& callback) {
  774. return callback->handle() == handle;
  775. });
  776. }
  777. void Window::set_associated_document(DOM::Document& document)
  778. {
  779. m_associated_document = &document;
  780. }
  781. void Window::set_current_event(DOM::Event* event)
  782. {
  783. m_current_event = event;
  784. }
  785. HTML::BrowsingContext const* Window::browsing_context() const
  786. {
  787. return m_associated_document->browsing_context();
  788. }
  789. HTML::BrowsingContext* Window::browsing_context()
  790. {
  791. return m_associated_document->browsing_context();
  792. }
  793. // https://html.spec.whatwg.org/multipage/system-state.html#pdf-viewer-plugin-objects
  794. Vector<JS::NonnullGCPtr<Plugin>> Window::pdf_viewer_plugin_objects()
  795. {
  796. // Each Window object has a PDF viewer plugin objects list. If the user agent's PDF viewer supported is false, then it is the empty list.
  797. // Otherwise, it is a list containing five Plugin objects, whose names are, respectively:
  798. // 0. "PDF Viewer"
  799. // 1. "Chrome PDF Viewer"
  800. // 2. "Chromium PDF Viewer"
  801. // 3. "Microsoft Edge PDF Viewer"
  802. // 4. "WebKit built-in PDF"
  803. // The values of the above list form the PDF viewer plugin names list. https://html.spec.whatwg.org/multipage/system-state.html#pdf-viewer-plugin-names
  804. VERIFY(page());
  805. if (!page()->pdf_viewer_supported())
  806. return {};
  807. if (m_pdf_viewer_plugin_objects.is_empty()) {
  808. // FIXME: Propagate errors.
  809. m_pdf_viewer_plugin_objects.append(realm().heap().allocate<Plugin>(realm(), realm(), "PDF Viewer"_string.release_value_but_fixme_should_propagate_errors()).release_allocated_value_but_fixme_should_propagate_errors());
  810. m_pdf_viewer_plugin_objects.append(realm().heap().allocate<Plugin>(realm(), realm(), "Chrome PDF Viewer"_string.release_value_but_fixme_should_propagate_errors()).release_allocated_value_but_fixme_should_propagate_errors());
  811. m_pdf_viewer_plugin_objects.append(realm().heap().allocate<Plugin>(realm(), realm(), "Chromium PDF Viewer"_string.release_value_but_fixme_should_propagate_errors()).release_allocated_value_but_fixme_should_propagate_errors());
  812. m_pdf_viewer_plugin_objects.append(realm().heap().allocate<Plugin>(realm(), realm(), "Microsoft Edge PDF Viewer"_string.release_value_but_fixme_should_propagate_errors()).release_allocated_value_but_fixme_should_propagate_errors());
  813. m_pdf_viewer_plugin_objects.append(realm().heap().allocate<Plugin>(realm(), realm(), "WebKit built-in PDF"_string.release_value_but_fixme_should_propagate_errors()).release_allocated_value_but_fixme_should_propagate_errors());
  814. }
  815. return m_pdf_viewer_plugin_objects;
  816. }
  817. // https://html.spec.whatwg.org/multipage/system-state.html#pdf-viewer-mime-type-objects
  818. Vector<JS::NonnullGCPtr<MimeType>> Window::pdf_viewer_mime_type_objects()
  819. {
  820. // Each Window object has a PDF viewer mime type objects list. If the user agent's PDF viewer supported is false, then it is the empty list.
  821. // Otherwise, it is a list containing two MimeType objects, whose types are, respectively:
  822. // 0. "application/pdf"
  823. // 1. "text/pdf"
  824. // The values of the above list form the PDF viewer mime types list. https://html.spec.whatwg.org/multipage/system-state.html#pdf-viewer-mime-types
  825. VERIFY(page());
  826. if (!page()->pdf_viewer_supported())
  827. return {};
  828. if (m_pdf_viewer_mime_type_objects.is_empty()) {
  829. m_pdf_viewer_mime_type_objects.append(realm().heap().allocate<MimeType>(realm(), realm(), "application/pdf"_string.release_value_but_fixme_should_propagate_errors()).release_allocated_value_but_fixme_should_propagate_errors());
  830. m_pdf_viewer_mime_type_objects.append(realm().heap().allocate<MimeType>(realm(), realm(), "text/pdf"_string.release_value_but_fixme_should_propagate_errors()).release_allocated_value_but_fixme_should_propagate_errors());
  831. }
  832. return m_pdf_viewer_mime_type_objects;
  833. }
  834. WebIDL::ExceptionOr<void> Window::initialize_web_interfaces(Badge<WindowEnvironmentSettingsObject>)
  835. {
  836. auto& realm = this->realm();
  837. add_window_exposed_interfaces(*this);
  838. Object::set_prototype(&Bindings::ensure_web_prototype<Bindings::WindowPrototype>(realm, "Window"));
  839. m_location = MUST_OR_THROW_OOM(heap().allocate<Location>(realm, realm));
  840. m_navigator = MUST_OR_THROW_OOM(heap().allocate<Navigator>(realm, realm));
  841. MUST_OR_THROW_OOM(Bindings::WindowGlobalMixin::initialize(realm, *this));
  842. // FIXME: These should be native accessors, not properties
  843. define_native_accessor(realm, "devicePixelRatio", device_pixel_ratio_getter, {}, JS::Attribute::Enumerable | JS::Attribute::Configurable);
  844. u8 attr = JS::Attribute::Writable | JS::Attribute::Enumerable | JS::Attribute::Configurable;
  845. define_native_function(realm, "setInterval", set_interval, 1, attr);
  846. define_native_function(realm, "setTimeout", set_timeout, 1, attr);
  847. define_native_function(realm, "clearInterval", clear_interval, 1, attr);
  848. define_native_function(realm, "clearTimeout", clear_timeout, 1, attr);
  849. define_native_function(realm, "requestAnimationFrame", request_animation_frame, 1, attr);
  850. define_native_function(realm, "cancelAnimationFrame", cancel_animation_frame, 1, attr);
  851. define_native_function(realm, "focus", focus, 0, attr);
  852. define_native_function(realm, "queueMicrotask", queue_microtask, 1, attr);
  853. define_native_function(realm, "requestIdleCallback", request_idle_callback, 1, attr);
  854. define_native_function(realm, "cancelIdleCallback", cancel_idle_callback, 1, attr);
  855. define_native_function(realm, "getComputedStyle", get_computed_style, 1, attr);
  856. define_native_function(realm, "getSelection", get_selection, 0, attr);
  857. define_native_function(realm, "structuredClone", structured_clone, 1, attr);
  858. define_native_function(realm, "fetch", Bindings::fetch, 1, attr);
  859. // FIXME: These properties should be [Replaceable] according to the spec, but [Writable+Configurable] is the closest we have.
  860. define_native_accessor(realm, "screenX", screen_x_getter, {}, attr);
  861. define_native_accessor(realm, "screenY", screen_y_getter, {}, attr);
  862. define_native_accessor(realm, "screenLeft", screen_left_getter, {}, attr);
  863. define_native_accessor(realm, "screenTop", screen_top_getter, {}, attr);
  864. define_native_accessor(realm, "outerWidth", outer_width_getter, {}, attr);
  865. define_native_accessor(realm, "outerHeight", outer_height_getter, {}, attr);
  866. define_direct_property("CSS", MUST_OR_THROW_OOM(heap().allocate<Bindings::CSSNamespace>(realm, realm)), 0);
  867. define_native_accessor(realm, "localStorage", local_storage_getter, {}, attr);
  868. define_native_accessor(realm, "sessionStorage", session_storage_getter, {}, attr);
  869. // FIXME: Implement codegen for readonly properties with [PutForwards]
  870. auto& location_accessor = storage_get("location")->value.as_accessor();
  871. location_accessor.set_setter(JS::NativeFunction::create(realm, location_setter, 1, "location", &realm, {}, "set"sv));
  872. // WebAssembly "namespace"
  873. define_direct_property("WebAssembly", MUST_OR_THROW_OOM(heap().allocate<Bindings::WebAssemblyObject>(realm, realm)), JS::Attribute::Enumerable | JS::Attribute::Configurable);
  874. return {};
  875. }
  876. // https://webidl.spec.whatwg.org/#platform-object-setprototypeof
  877. JS::ThrowCompletionOr<bool> Window::internal_set_prototype_of(JS::Object* prototype)
  878. {
  879. // 1. Return ? SetImmutablePrototype(O, V).
  880. return set_immutable_prototype(prototype);
  881. }
  882. static JS::ThrowCompletionOr<HTML::Window*> impl_from(JS::VM& vm)
  883. {
  884. // Since this is a non built-in function we must treat it as non-strict mode
  885. // this means that a nullish this_value should be converted to the
  886. // global_object. Generally this does not matter as we try to convert the
  887. // this_value to a specific object type in the bindings. But since window is
  888. // the global object we make an exception here.
  889. // This allows calls like `setTimeout(f, 10)` to work.
  890. auto this_value = vm.this_value();
  891. if (this_value.is_nullish())
  892. this_value = &vm.current_realm()->global_object();
  893. auto* this_object = MUST(this_value.to_object(vm));
  894. if (is<WindowProxy>(*this_object))
  895. return static_cast<WindowProxy*>(this_object)->window().ptr();
  896. if (is<Window>(*this_object))
  897. return static_cast<Window*>(this_object);
  898. return vm.throw_completion<JS::TypeError>(JS::ErrorType::NotAnObjectOfType, "Window");
  899. }
  900. // https://html.spec.whatwg.org/multipage/window-object.html#dom-window
  901. JS::NonnullGCPtr<WindowProxy> Window::window() const
  902. {
  903. // The window, frames, and self getter steps are to return this's relevant realm.[[GlobalEnv]].[[GlobalThisValue]].
  904. return verify_cast<WindowProxy>(relevant_realm(*this).global_environment().global_this_value());
  905. }
  906. // https://html.spec.whatwg.org/multipage/window-object.html#dom-self
  907. JS::NonnullGCPtr<WindowProxy> Window::self() const
  908. {
  909. // The window, frames, and self getter steps are to return this's relevant realm.[[GlobalEnv]].[[GlobalThisValue]].
  910. return verify_cast<WindowProxy>(relevant_realm(*this).global_environment().global_this_value());
  911. }
  912. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-document-2
  913. JS::NonnullGCPtr<DOM::Document const> Window::document() const
  914. {
  915. // The document getter steps are to return this's associated Document.
  916. return associated_document();
  917. }
  918. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-name
  919. String Window::name() const
  920. {
  921. // 1. If this's navigable is null, then return the empty string.
  922. if (!browsing_context())
  923. return String {};
  924. // 2. Return this's navigable's target name.
  925. return String::from_deprecated_string(browsing_context()->name()).release_value_but_fixme_should_propagate_errors();
  926. }
  927. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name:dom-name
  928. void Window::set_name(String const& name)
  929. {
  930. // 1. If this's navigable is null, then return.
  931. if (!browsing_context())
  932. return;
  933. // 2. Set this's navigable's active session history entry's document state's navigable target name to the given value.
  934. browsing_context()->set_name(name.to_deprecated_string());
  935. }
  936. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-location
  937. JS::NonnullGCPtr<Location> Window::location() const
  938. {
  939. // The Window object's location getter steps are to return this's Location object.
  940. return *m_location;
  941. }
  942. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-history
  943. JS::NonnullGCPtr<History> Window::history() const
  944. {
  945. // The history getter steps are to return this's associated Document's history object.
  946. return associated_document().history();
  947. }
  948. // https://html.spec.whatwg.org/multipage/window-object.html#dom-frames
  949. JS::NonnullGCPtr<WindowProxy> Window::frames() const
  950. {
  951. // The window, frames, and self getter steps are to return this's relevant realm.[[GlobalEnv]].[[GlobalThisValue]].
  952. return verify_cast<WindowProxy>(relevant_realm(*this).global_environment().global_this_value());
  953. }
  954. // https://html.spec.whatwg.org/multipage/window-object.html#dom-length
  955. u32 Window::length() const
  956. {
  957. // The length getter steps are to return this's associated Document's document-tree child navigables's size.
  958. return static_cast<u32>(document_tree_child_browsing_context_count());
  959. }
  960. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-top
  961. JS::GCPtr<WindowProxy const> Window::top() const
  962. {
  963. // 1. If this's navigable is null, then return null.
  964. auto const* browsing_context = this->browsing_context();
  965. if (!browsing_context)
  966. return {};
  967. // 2. Return this's navigable's top-level traversable's active WindowProxy.
  968. return browsing_context->top_level_browsing_context().window_proxy();
  969. }
  970. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-parent
  971. JS::GCPtr<WindowProxy const> Window::parent() const
  972. {
  973. // 1. Let navigable be this's navigable.
  974. auto* navigable = browsing_context();
  975. // 2. If navigable is null, then return null.
  976. if (!navigable)
  977. return {};
  978. // 3. If navigable's parent is not null, then set navigable to navigable's parent.
  979. if (auto parent = navigable->parent())
  980. navigable = parent;
  981. // 4. Return navigable's active WindowProxy.
  982. return navigable->window_proxy();
  983. }
  984. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-frameelement
  985. JS::GCPtr<DOM::Element const> Window::frame_element() const
  986. {
  987. // 1. Let current be this's node navigable.
  988. auto* current = browsing_context();
  989. // 2. If current is null, then return null.
  990. if (!current)
  991. return {};
  992. // 3. Let container be current's container.
  993. auto* container = current->container();
  994. // 4. If container is null, then return null.
  995. if (!container)
  996. return {};
  997. // 5. If container's node document's origin is not same origin-domain with the current settings object's origin, then return null.
  998. if (!container->document().origin().is_same_origin_domain(current_settings_object().origin()))
  999. return {};
  1000. // 6. Return container.
  1001. return container;
  1002. }
  1003. // https://html.spec.whatwg.org/multipage/nav-history-apis.html#dom-open
  1004. WebIDL::ExceptionOr<JS::GCPtr<HTML::WindowProxy>> Window::open(Optional<String> const& url, Optional<String> const& target, Optional<String> const& features)
  1005. {
  1006. // The open(url, target, features) method steps are to run the window open steps with url, target, and features.
  1007. return open_impl(*url, *target, *features);
  1008. }
  1009. // https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator
  1010. JS::NonnullGCPtr<Navigator> Window::navigator() const
  1011. {
  1012. // The navigator and clientInformation getter steps are to return this's associated Navigator.
  1013. return *m_navigator;
  1014. }
  1015. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-alert
  1016. void Window::alert(String const& message)
  1017. {
  1018. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#simple-dialogs
  1019. // Note: This method is defined using two overloads, instead of using an optional argument,
  1020. // for historical reasons. The practical impact of this is that alert(undefined) is
  1021. // treated as alert("undefined"), but alert() is treated as alert("").
  1022. // FIXME: Make this fully spec compliant.
  1023. if (auto* page = this->page())
  1024. page->did_request_alert(message.to_deprecated_string());
  1025. }
  1026. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-confirm
  1027. bool Window::confirm(Optional<String> const& message)
  1028. {
  1029. // FIXME: Make this fully spec compliant.
  1030. // NOTE: `message` has an IDL-provided default value and is never empty.
  1031. if (auto* page = this->page())
  1032. return page->did_request_confirm(message->to_deprecated_string());
  1033. return false;
  1034. }
  1035. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-prompt
  1036. Optional<String> Window::prompt(Optional<String> const& message, Optional<String> const& default_)
  1037. {
  1038. // FIXME: Make this fully spec compliant.
  1039. if (auto* page = this->page()) {
  1040. auto response = page->did_request_prompt(message->to_deprecated_string(), default_->to_deprecated_string());
  1041. if (response.is_null())
  1042. return {};
  1043. return String::from_deprecated_string(response).release_value_but_fixme_should_propagate_errors();
  1044. }
  1045. return {};
  1046. }
  1047. // https://html.spec.whatwg.org/multipage/web-messaging.html#dom-window-postmessage
  1048. void Window::post_message(JS::Value message, String const&)
  1049. {
  1050. // FIXME: This is an ad-hoc hack implementation instead, since we don't currently
  1051. // have serialization and deserialization of messages.
  1052. HTML::queue_global_task(HTML::Task::Source::PostedMessage, *this, [this, message] {
  1053. HTML::MessageEventInit event_init {};
  1054. event_init.data = message;
  1055. event_init.origin = "<origin>"_string.release_value_but_fixme_should_propagate_errors();
  1056. dispatch_event(HTML::MessageEvent::create(realm(), String::from_deprecated_string(HTML::EventNames::message).release_value_but_fixme_should_propagate_errors(), event_init).release_value_but_fixme_should_propagate_errors());
  1057. });
  1058. }
  1059. // https://dom.spec.whatwg.org/#dom-window-event
  1060. Variant<JS::Handle<DOM::Event>, JS::Value> Window::event() const
  1061. {
  1062. // The event getter steps are to return this’s current event.
  1063. if (auto* current_event = this->current_event())
  1064. return make_handle(const_cast<DOM::Event&>(*current_event));
  1065. return JS::js_undefined();
  1066. }
  1067. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-matchmedia
  1068. WebIDL::ExceptionOr<JS::NonnullGCPtr<CSS::MediaQueryList>> Window::match_media(String const& query)
  1069. {
  1070. // 1. Let parsed media query list be the result of parsing query.
  1071. auto parsed_media_query_list = parse_media_query_list(CSS::Parser::ParsingContext(associated_document()), query);
  1072. // 2. Return a new MediaQueryList object, with this's associated Document as the document, with parsed media query list as its associated media query list.
  1073. auto media_query_list = MUST_OR_THROW_OOM(heap().allocate<CSS::MediaQueryList>(realm(), associated_document(), move(parsed_media_query_list)));
  1074. associated_document().add_media_query_list(media_query_list);
  1075. return media_query_list;
  1076. }
  1077. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-screen
  1078. WebIDL::ExceptionOr<JS::NonnullGCPtr<CSS::Screen>> Window::screen()
  1079. {
  1080. // The screen attribute must return the Screen object associated with the Window object.
  1081. if (!m_screen)
  1082. m_screen = MUST_OR_THROW_OOM(heap().allocate<CSS::Screen>(realm(), *this));
  1083. return JS::NonnullGCPtr { *m_screen };
  1084. }
  1085. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-innerwidth
  1086. i32 Window::inner_width() const
  1087. {
  1088. // The innerWidth attribute must return the viewport width including the size of a rendered scroll bar (if any),
  1089. // or zero if there is no viewport.
  1090. if (auto const* browsing_context = associated_document().browsing_context())
  1091. return browsing_context->viewport_rect().width().value();
  1092. return 0;
  1093. }
  1094. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-innerheight
  1095. i32 Window::inner_height() const
  1096. {
  1097. // The innerHeight attribute must return the viewport height including the size of a rendered scroll bar (if any),
  1098. // or zero if there is no viewport.
  1099. if (auto const* browsing_context = associated_document().browsing_context())
  1100. return browsing_context->viewport_rect().height().value();
  1101. return 0;
  1102. }
  1103. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-scrollx
  1104. double Window::scroll_x() const
  1105. {
  1106. // The scrollX attribute must return the x-coordinate, relative to the initial containing block origin,
  1107. // of the left of the viewport, or zero if there is no viewport.
  1108. if (auto* page = this->page())
  1109. return page->top_level_browsing_context().viewport_scroll_offset().x().value();
  1110. return 0;
  1111. }
  1112. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-scrolly
  1113. double Window::scroll_y() const
  1114. {
  1115. // The scrollY attribute must return the y-coordinate, relative to the initial containing block origin,
  1116. // of the top of the viewport, or zero if there is no viewport.
  1117. if (auto* page = this->page())
  1118. return page->top_level_browsing_context().viewport_scroll_offset().y().value();
  1119. return 0;
  1120. }
  1121. // https://w3c.github.io/csswg-drafts/cssom-view/#perform-a-scroll
  1122. static void perform_a_scroll(Page& page, double x, double y, JS::GCPtr<DOM::Node const> element, Bindings::ScrollBehavior behavior)
  1123. {
  1124. // FIXME: 1. Abort any ongoing smooth scroll for box.
  1125. // 2. If the user agent honors the scroll-behavior property and one of the following are true:
  1126. // - behavior is "auto" and element is not null and its computed value of the scroll-behavior property is smooth
  1127. // - behavior is smooth
  1128. // ...then perform a smooth scroll of box to position. Once the position has finished updating, emit the scrollend
  1129. // event. Otherwise, perform an instant scroll of box to position. After an instant scroll emit the scrollend event.
  1130. // FIXME: Support smooth scrolling.
  1131. (void)element;
  1132. (void)behavior;
  1133. page.client().page_did_request_scroll_to({ x, y });
  1134. }
  1135. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-scroll
  1136. void Window::scroll(ScrollToOptions const& options)
  1137. {
  1138. // 4. If there is no viewport, abort these steps.
  1139. auto* page = this->page();
  1140. if (!page)
  1141. return;
  1142. auto const& top_level_browsing_context = page->top_level_browsing_context();
  1143. // 1. If invoked with one argument, follow these substeps:
  1144. // 1. Let options be the argument.
  1145. auto viewport_rect = top_level_browsing_context.viewport_rect().to_type<float>();
  1146. // 2. Let x be the value of the left dictionary member of options, if present, or the viewport’s current scroll
  1147. // position on the x axis otherwise.
  1148. auto x = options.left.value_or(viewport_rect.x());
  1149. // 3. Let y be the value of the top dictionary member of options, if present, or the viewport’s current scroll
  1150. // position on the y axis otherwise.
  1151. auto y = options.top.value_or(viewport_rect.y());
  1152. // 3. Normalize non-finite values for x and y.
  1153. x = JS::Value(x).is_finite_number() ? x : 0;
  1154. y = JS::Value(y).is_finite_number() ? y : 0;
  1155. // 5. Let viewport width be the width of the viewport excluding the width of the scroll bar, if any.
  1156. auto viewport_width = viewport_rect.width();
  1157. // 6. Let viewport height be the height of the viewport excluding the height of the scroll bar, if any.
  1158. auto viewport_height = viewport_rect.height();
  1159. (void)viewport_width;
  1160. (void)viewport_height;
  1161. // FIXME: 7.
  1162. // -> If the viewport has rightward overflow direction
  1163. // Let x be max(0, min(x, viewport scrolling area width - viewport width)).
  1164. // -> If the viewport has leftward overflow direction
  1165. // Let x be min(0, max(x, viewport width - viewport scrolling area width)).
  1166. // FIXME: 8.
  1167. // -> If the viewport has downward overflow direction
  1168. // Let y be max(0, min(y, viewport scrolling area height - viewport height)).
  1169. // -> If the viewport has upward overflow direction
  1170. // Let y be min(0, max(y, viewport height - viewport scrolling area height)).
  1171. // FIXME: 9. Let position be the scroll position the viewport would have by aligning the x-coordinate x of the viewport
  1172. // scrolling area with the left of the viewport and aligning the y-coordinate y of the viewport scrolling area
  1173. // with the top of the viewport.
  1174. // FIXME: 10. If position is the same as the viewport’s current scroll position, and the viewport does not have an ongoing
  1175. // smooth scroll, abort these steps.
  1176. // 11. Let document be the viewport’s associated Document.
  1177. auto const* document = top_level_browsing_context.active_document();
  1178. // 12. Perform a scroll of the viewport to position, document’s root element as the associated element, if there is
  1179. // one, or null otherwise, and the scroll behavior being the value of the behavior dictionary member of options.
  1180. auto element = JS::GCPtr<DOM::Node const> { document ? &document->root() : nullptr };
  1181. perform_a_scroll(*page, x, y, element, options.behavior);
  1182. }
  1183. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-scroll
  1184. void Window::scroll(double x, double y)
  1185. {
  1186. // 2. If invoked with two arguments, follow these substeps:
  1187. // 1. Let options be null converted to a ScrollToOptions dictionary. [WEBIDL]
  1188. auto options = ScrollToOptions {};
  1189. // 2. Let x and y be the arguments, respectively.
  1190. options.left = x;
  1191. options.top = y;
  1192. scroll(options);
  1193. }
  1194. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-scrollby
  1195. void Window::scroll_by(ScrollToOptions options)
  1196. {
  1197. // 2. Normalize non-finite values for the left and top dictionary members of options.
  1198. auto x = options.left.value_or(0);
  1199. auto y = options.top.value_or(0);
  1200. x = JS::Value(x).is_finite_number() ? x : 0;
  1201. y = JS::Value(y).is_finite_number() ? y : 0;
  1202. // 3. Add the value of scrollX to the left dictionary member.
  1203. options.left = x + scroll_x();
  1204. // 4. Add the value of scrollY to the top dictionary member.
  1205. options.top = y + scroll_y();
  1206. // 5. Act as if the scroll() method was invoked with options as the only argument.
  1207. scroll(options);
  1208. }
  1209. // https://w3c.github.io/csswg-drafts/cssom-view/#dom-window-scrollby
  1210. void Window::scroll_by(double x, double y)
  1211. {
  1212. // 1. If invoked with two arguments, follow these substeps:
  1213. // 1. Let options be null converted to a ScrollToOptions dictionary. [WEBIDL]
  1214. auto options = ScrollToOptions {};
  1215. // 2. Let x and y be the arguments, respectively.
  1216. // 3. Let the left dictionary member of options have the value x.
  1217. options.left = x;
  1218. // 4. Let the top dictionary member of options have the value y.
  1219. options.top = y;
  1220. scroll_by(options);
  1221. }
  1222. // https://w3c.github.io/hr-time/#dom-windoworworkerglobalscope-performance
  1223. WebIDL::ExceptionOr<JS::NonnullGCPtr<HighResolutionTime::Performance>> Window::performance()
  1224. {
  1225. if (!m_performance)
  1226. m_performance = MUST_OR_THROW_OOM(heap().allocate<HighResolutionTime::Performance>(realm(), *this));
  1227. return JS::NonnullGCPtr { *m_performance };
  1228. }
  1229. // https://w3c.github.io/webcrypto/#dom-windoworworkerglobalscope-crypto
  1230. WebIDL::ExceptionOr<JS::NonnullGCPtr<Crypto::Crypto>> Window::crypto()
  1231. {
  1232. if (!m_crypto)
  1233. m_crypto = MUST_OR_THROW_OOM(heap().allocate<Crypto::Crypto>(realm(), realm()));
  1234. return JS::NonnullGCPtr { *m_crypto };
  1235. }
  1236. static JS::ThrowCompletionOr<TimerHandler> make_timer_handler(JS::VM& vm, JS::Value handler)
  1237. {
  1238. if (handler.is_function())
  1239. return JS::make_handle(vm.heap().allocate_without_realm<WebIDL::CallbackType>(handler.as_function(), HTML::incumbent_settings_object()));
  1240. return TRY(handler.to_deprecated_string(vm));
  1241. }
  1242. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout
  1243. JS_DEFINE_NATIVE_FUNCTION(Window::set_timeout)
  1244. {
  1245. auto* impl = TRY(impl_from(vm));
  1246. if (!vm.argument_count())
  1247. return vm.throw_completion<JS::TypeError>(JS::ErrorType::BadArgCountAtLeastOne, "setTimeout");
  1248. auto handler = TRY(make_timer_handler(vm, vm.argument(0)));
  1249. i32 timeout = 0;
  1250. if (vm.argument_count() >= 2)
  1251. timeout = TRY(vm.argument(1).to_i32(vm));
  1252. JS::MarkedVector<JS::Value> arguments { vm.heap() };
  1253. for (size_t i = 2; i < vm.argument_count(); ++i)
  1254. arguments.append(vm.argument(i));
  1255. auto id = impl->set_timeout_impl(move(handler), timeout, move(arguments));
  1256. return JS::Value(id);
  1257. }
  1258. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-setinterval
  1259. JS_DEFINE_NATIVE_FUNCTION(Window::set_interval)
  1260. {
  1261. auto* impl = TRY(impl_from(vm));
  1262. if (!vm.argument_count())
  1263. return vm.throw_completion<JS::TypeError>(JS::ErrorType::BadArgCountAtLeastOne, "setInterval");
  1264. auto handler = TRY(make_timer_handler(vm, vm.argument(0)));
  1265. i32 timeout = 0;
  1266. if (vm.argument_count() >= 2)
  1267. timeout = TRY(vm.argument(1).to_i32(vm));
  1268. JS::MarkedVector<JS::Value> arguments { vm.heap() };
  1269. for (size_t i = 2; i < vm.argument_count(); ++i)
  1270. arguments.append(vm.argument(i));
  1271. auto id = impl->set_interval_impl(move(handler), timeout, move(arguments));
  1272. return JS::Value(id);
  1273. }
  1274. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-cleartimeout
  1275. JS_DEFINE_NATIVE_FUNCTION(Window::clear_timeout)
  1276. {
  1277. auto* impl = TRY(impl_from(vm));
  1278. i32 id = 0;
  1279. if (vm.argument_count())
  1280. id = TRY(vm.argument(0).to_i32(vm));
  1281. impl->clear_timeout_impl(id);
  1282. return JS::js_undefined();
  1283. }
  1284. // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-clearinterval
  1285. JS_DEFINE_NATIVE_FUNCTION(Window::clear_interval)
  1286. {
  1287. auto* impl = TRY(impl_from(vm));
  1288. i32 id = 0;
  1289. if (vm.argument_count())
  1290. id = TRY(vm.argument(0).to_i32(vm));
  1291. impl->clear_interval_impl(id);
  1292. return JS::js_undefined();
  1293. }
  1294. JS_DEFINE_NATIVE_FUNCTION(Window::request_animation_frame)
  1295. {
  1296. auto* impl = TRY(impl_from(vm));
  1297. if (!vm.argument_count())
  1298. return vm.throw_completion<JS::TypeError>(JS::ErrorType::BadArgCountOne, "requestAnimationFrame");
  1299. auto* callback_object = TRY(vm.argument(0).to_object(vm));
  1300. if (!callback_object->is_function())
  1301. return vm.throw_completion<JS::TypeError>(JS::ErrorType::NotAFunctionNoParam);
  1302. auto callback = vm.heap().allocate_without_realm<WebIDL::CallbackType>(*callback_object, HTML::incumbent_settings_object());
  1303. return JS::Value(impl->request_animation_frame_impl(*callback));
  1304. }
  1305. JS_DEFINE_NATIVE_FUNCTION(Window::cancel_animation_frame)
  1306. {
  1307. auto* impl = TRY(impl_from(vm));
  1308. if (!vm.argument_count())
  1309. return vm.throw_completion<JS::TypeError>(JS::ErrorType::BadArgCountOne, "cancelAnimationFrame");
  1310. auto id = TRY(vm.argument(0).to_i32(vm));
  1311. impl->cancel_animation_frame_impl(id);
  1312. return JS::js_undefined();
  1313. }
  1314. JS_DEFINE_NATIVE_FUNCTION(Window::queue_microtask)
  1315. {
  1316. auto* impl = TRY(impl_from(vm));
  1317. if (!vm.argument_count())
  1318. return vm.throw_completion<JS::TypeError>(JS::ErrorType::BadArgCountAtLeastOne, "queueMicrotask");
  1319. auto* callback_object = TRY(vm.argument(0).to_object(vm));
  1320. if (!callback_object->is_function())
  1321. return vm.throw_completion<JS::TypeError>(JS::ErrorType::NotAFunctionNoParam);
  1322. auto callback = vm.heap().allocate_without_realm<WebIDL::CallbackType>(*callback_object, HTML::incumbent_settings_object());
  1323. impl->queue_microtask_impl(*callback);
  1324. return JS::js_undefined();
  1325. }
  1326. JS_DEFINE_NATIVE_FUNCTION(Window::request_idle_callback)
  1327. {
  1328. auto* impl = TRY(impl_from(vm));
  1329. if (!vm.argument_count())
  1330. return vm.throw_completion<JS::TypeError>(JS::ErrorType::BadArgCountAtLeastOne, "requestIdleCallback");
  1331. auto* callback_object = TRY(vm.argument(0).to_object(vm));
  1332. if (!callback_object->is_function())
  1333. return vm.throw_completion<JS::TypeError>(JS::ErrorType::NotAFunctionNoParam);
  1334. // FIXME: accept options object
  1335. auto callback = vm.heap().allocate_without_realm<WebIDL::CallbackType>(*callback_object, HTML::incumbent_settings_object());
  1336. return JS::Value(impl->request_idle_callback_impl(*callback));
  1337. }
  1338. JS_DEFINE_NATIVE_FUNCTION(Window::cancel_idle_callback)
  1339. {
  1340. auto* impl = TRY(impl_from(vm));
  1341. if (!vm.argument_count())
  1342. return vm.throw_completion<JS::TypeError>(JS::ErrorType::BadArgCountOne, "cancelIdleCallback");
  1343. auto id = TRY(vm.argument(0).to_u32(vm));
  1344. impl->cancel_idle_callback_impl(id);
  1345. return JS::js_undefined();
  1346. }
  1347. // https://html.spec.whatwg.org/multipage/interaction.html#dom-window-focus
  1348. JS_DEFINE_NATIVE_FUNCTION(Window::focus)
  1349. {
  1350. auto* impl = TRY(impl_from(vm));
  1351. // 1. Let current be this Window object's browsing context.
  1352. auto* current = impl->browsing_context();
  1353. // 2. If current is null, then return.
  1354. if (!current)
  1355. return JS::js_undefined();
  1356. // 3. Run the focusing steps with current.
  1357. // FIXME: We should pass in the browsing context itself instead of the active document, however the focusing steps don't currently accept browsing contexts.
  1358. // Passing in a browsing context always makes it resolve to its active document for focus, so this is fine for now.
  1359. run_focusing_steps(current->active_document());
  1360. // FIXME: 4. If current is a top-level browsing context, user agents are encouraged to trigger some sort of notification to indicate to the user that the page is attempting to gain focus.
  1361. return JS::js_undefined();
  1362. }
  1363. // https://html.spec.whatwg.org/multipage/window-object.html#number-of-document-tree-child-browsing-contexts
  1364. size_t Window::document_tree_child_browsing_context_count() const
  1365. {
  1366. // 1. If W's browsing context is null, then return 0.
  1367. auto* this_browsing_context = associated_document().browsing_context();
  1368. if (!this_browsing_context)
  1369. return 0;
  1370. // 2. Return the number of document-tree child browsing contexts of W's browsing context.
  1371. return this_browsing_context->document_tree_child_browsing_context_count();
  1372. }
  1373. JS_DEFINE_NATIVE_FUNCTION(Window::location_setter)
  1374. {
  1375. auto* impl = TRY(impl_from(vm));
  1376. TRY(impl->m_location->set(JS::PropertyKey("href"), vm.argument(0), JS::Object::ShouldThrowExceptions::Yes));
  1377. return JS::js_undefined();
  1378. }
  1379. JS_DEFINE_NATIVE_FUNCTION(Window::device_pixel_ratio_getter)
  1380. {
  1381. auto* impl = TRY(impl_from(vm));
  1382. return JS::Value(impl->device_pixel_ratio());
  1383. }
  1384. JS_DEFINE_NATIVE_FUNCTION(Window::get_computed_style)
  1385. {
  1386. auto* impl = TRY(impl_from(vm));
  1387. auto* object = TRY(vm.argument(0).to_object(vm));
  1388. if (!is<DOM::Element>(object))
  1389. return vm.throw_completion<JS::TypeError>(JS::ErrorType::NotAnObjectOfType, "DOM element");
  1390. return impl->get_computed_style_impl(*static_cast<DOM::Element*>(object));
  1391. }
  1392. // https://w3c.github.io/selection-api/#dom-window-getselection
  1393. JS_DEFINE_NATIVE_FUNCTION(Window::get_selection)
  1394. {
  1395. // The method must invoke and return the result of getSelection() on this's Window.document attribute.
  1396. auto* impl = TRY(impl_from(vm));
  1397. return impl->associated_document().get_selection();
  1398. }
  1399. JS_DEFINE_NATIVE_FUNCTION(Window::screen_left_getter)
  1400. {
  1401. auto* impl = TRY(impl_from(vm));
  1402. return JS::Value(impl->screen_x());
  1403. }
  1404. JS_DEFINE_NATIVE_FUNCTION(Window::screen_top_getter)
  1405. {
  1406. auto* impl = TRY(impl_from(vm));
  1407. return JS::Value(impl->screen_y());
  1408. }
  1409. JS_DEFINE_NATIVE_FUNCTION(Window::screen_x_getter)
  1410. {
  1411. auto* impl = TRY(impl_from(vm));
  1412. return JS::Value(impl->screen_x());
  1413. }
  1414. JS_DEFINE_NATIVE_FUNCTION(Window::screen_y_getter)
  1415. {
  1416. auto* impl = TRY(impl_from(vm));
  1417. return JS::Value(impl->screen_y());
  1418. }
  1419. JS_DEFINE_NATIVE_FUNCTION(Window::outer_width_getter)
  1420. {
  1421. auto* impl = TRY(impl_from(vm));
  1422. return JS::Value(impl->outer_width());
  1423. }
  1424. JS_DEFINE_NATIVE_FUNCTION(Window::outer_height_getter)
  1425. {
  1426. auto* impl = TRY(impl_from(vm));
  1427. return JS::Value(impl->outer_height());
  1428. }
  1429. JS_DEFINE_NATIVE_FUNCTION(Window::structured_clone)
  1430. {
  1431. auto* impl = TRY(impl_from(vm));
  1432. return TRY(Bindings::throw_dom_exception_if_needed(vm, [&] {
  1433. return impl->structured_clone_impl(vm, vm.argument(0));
  1434. }));
  1435. }
  1436. JS_DEFINE_NATIVE_FUNCTION(Window::local_storage_getter)
  1437. {
  1438. auto* impl = TRY(impl_from(vm));
  1439. return impl->local_storage();
  1440. }
  1441. JS_DEFINE_NATIVE_FUNCTION(Window::session_storage_getter)
  1442. {
  1443. auto* impl = TRY(impl_from(vm));
  1444. return impl->session_storage();
  1445. }
  1446. }