From b7548f0318e1a0813c900e3d94e31cb46c9d28d6 Mon Sep 17 00:00:00 2001 From: Euclid Ye Date: Sat, 5 Jul 2025 12:47:22 +0800 Subject: [PATCH 1/2] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 41f0b468..38e9038e 100644 --- a/index.html +++ b/index.html @@ -4058,11 +4058,11 @@

Set Window Rect

  • If y is undefined, let y be null.

  • If width or height is neither null, nor - a Number from 0 to 231 − 1, return error + an integer from 0 to 231 − 1, return error with error code invalid argument.

  • If x or y is neither null, nor - a Number from −(231) to 231 − 1, + an integer from −(231) to 231 − 1, return error with error code invalid argument.

  • If the remote end does not support From 4c1d59102532b6556331dc9edf44afc692dc09b2 Mon Sep 17 00:00:00 2001 From: Euclid Ye Date: Mon, 7 Jul 2025 17:17:32 +0800 Subject: [PATCH 2/2] Use minimum/maximum safe integer --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 38e9038e..9f0219da 100644 --- a/index.html +++ b/index.html @@ -4058,11 +4058,11 @@

    Set Window Rect

  • If y is undefined, let y be null.

  • If width or height is neither null, nor - an integer from 0 to 231 − 1, return error + an integer from 0 to maximum safe integer, return error with error code invalid argument.

  • If x or y is neither null, nor - an integer from −(231) to 231 − 1, + an integer from minimum safe integer to maximum safe integer, return error with error code invalid argument.

  • If the remote end does not support @@ -11658,6 +11658,7 @@

    Index

  • Boolean type
  • List
  • maximum safe integer +
  • minimum safe integer
  • null
  • Number
  • Object