Window.cpp 58 KB

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