Window.cpp 56 KB

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