Window.cpp 74 KB

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