Window.cpp 61 KB

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