Window.cpp 70 KB

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