- From: Simon Pieters <notifications@github.com>
- Date: Mon, 08 Aug 2022 05:52:25 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 8 August 2022 12:52:39 UTC
Thanks @howard-e ! To clarify the methodology, you tested in Desktop Safari with the "Userscripts" extension (or maybe "Tampermonkey"), with a user script something like: ``` // ==UserScript== // @name TouchEvent compat research // @description Expose window.TouchEvent // @match *://*/* // ==/UserScript== Object.defineProperty(window, 'TouchEvent', { get: () => { console.log('TouchEvent getter called'); debugger; } }); ``` and then load each page and check if the layout is different or if something is clearly broken. And out of the 45 pages analyzed, 1 page (`https://meridian.broker/`) had different layout, for the chat bot thing. I couldn't see any difference, though. Can you post screenshots? Does it only happen at certain viewport widths? -- Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/issues/952#issuecomment-1208088210 You are receiving this because you are subscribed to this thread. Message ID: <whatwg/dom/issues/952/1208088210@github.com>
Received on Monday, 8 August 2022 12:52:39 UTC