Window.cpp 57 KB

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