From 3288c5b248e185fa9d3145edf42146ef22e68af6 Mon Sep 17 00:00:00 2001 From: Kenneth Rohde Christiansen Date: Thu, 21 Nov 2024 10:57:54 +0100 Subject: [PATCH] Move at-risk to experimental --- index.html | 51 +++++++++++++++++++++++++++++++-------------------- 1 file changed, 31 insertions(+), 20 deletions(-) diff --git a/index.html b/index.html index aeba5ee..67d27e6 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,26 @@ Compute Pressure Level 1 -

The Compute Pressure API provides a way for websites to react to changes @@ -183,18 +190,22 @@

Processing Units

Pressure sources

The specification currently defines the valid source types as - global system thermals and the central [=processing unit=], also known as the CPU. + global system thermals and + the central [=processing unit=], also known as the CPU. Future levels of this specification MAY introduce additional [=source types=].

-
-      enum PressureSource { "thermals", "cpu" };
+    
+      enum PressureSource { "cpu" };
+    
+
+      enum PressureSource { "cpu", "thermals" };
     

The PressureSource enum represents the [=valid source types=]:

    -
  • +
  • {{PressureSource/"thermals"}} represents the global thermal state of the system.