Window.cpp 69 KB

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