clientinformation.window.js (280B)
1 test(() => { 2 assert_equals(window.clientInformation, window.navigator); 3 }, "window.clientInformation exists and equals window.navigator"); 4 5 test(() => { 6 window.clientInformation = 1; 7 assert_equals(window.clientInformation, 1); 8 }, "window.clientInformation is Replaceable");