From bffe2c9fb32a2a7d61f160b55f6f6649680b62f8 Mon Sep 17 00:00:00 2001 From: Nikolaos Papaspyrou Date: Thu, 16 Jul 2026 18:49:55 +0200 Subject: [PATCH 1/4] Use single quotes in JS consistently --- index.bs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.bs b/index.bs index 90307a7..f13526b 100644 --- a/index.bs +++ b/index.bs @@ -258,19 +258,19 @@ function getPresetFeatures() { switch (navigator.cpuPerformance) { case 1: return { - videoQuality: "QVGA", + videoQuality: 'QVGA', frameRate: 15, effects: [], }; case 2: return { - videoQuality: "VGA", + videoQuality: 'VGA', frameRate: 15, effects: ['voice-detection', 'animated-reactions'], }; case 3: return { - videoQuality: "720p", + videoQuality: '720p', frameRate: 30, effects: ['voice-detection', 'animated-reactions', 'noise-reduction'], @@ -279,7 +279,7 @@ function getPresetFeatures() { case 0: // Assuming high performance settings for unknown devices default: // and for performance tiers higher than 4. return { - videoQuality: "1080p", + videoQuality: '1080p', frameRate: 30, effects: ['voice-detection', 'animated-reactions', 'noise-reduction', 'virtual-background'], From e6a5ff7d0b1b4df39b660b3ab44f866794fa7aff Mon Sep 17 00:00:00 2001 From: "Nikolaos S. Papaspyrou" Date: Mon, 10 Aug 2026 09:56:51 +0500 Subject: [PATCH 2/4] Remove definition of CPU frequency --- index.bs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.bs b/index.bs index f13526b..c140350 100644 --- a/index.bs +++ b/index.bs @@ -91,9 +91,7 @@ We will use the term CPU for the collection of central processing units that are contained in a computing device. We will use the term core to refer to a [=CPU=] part that can execute instruction threads, [=physical cores|physical=] or [=logical cores|logical=], -as reported by the operating system. We will use the term frequency -to refer to the clock speed of the [=CPU=], expressed in cycles per second (Hz) -and determining how fast a [=physical core=] can execute instructions. +as reported by the operating system. We will use the term performance to refer to how fast the [=CPU=] is perceived to be, from the point of view of a web application. A fast [=CPU=] From 1516c73c80eda79fa1a2d1093b8199fda7d52a22 Mon Sep 17 00:00:00 2001 From: "Nikolaos S. Papaspyrou" Date: Mon, 10 Aug 2026 10:11:54 +0500 Subject: [PATCH 3/4] Add reference to WPT tests --- index.bs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.bs b/index.bs index c140350..f5ce8ec 100644 --- a/index.bs +++ b/index.bs @@ -23,6 +23,10 @@ Include MDN Panels: if possible Include Can I Use Panels: yes + + Introduction {#intro} ===================== From 1f7587f36f975706158a9c922b200955c0769597 Mon Sep 17 00:00:00 2001 From: "Nikolaos S. Papaspyrou" Date: Mon, 10 Aug 2026 10:16:00 +0500 Subject: [PATCH 4/4] Fix WPT test file path --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index f5ce8ec..5ea3940 100644 --- a/index.bs +++ b/index.bs @@ -24,7 +24,7 @@ Include Can I Use Panels: yes Introduction {#intro}