Window.cpp 57 KB

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