You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-7Lines changed: 4 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,27 +30,24 @@ To assess Web Application implementation correctness and expedite issues discove
30
30
31
31
- Measure callback's execution self-time.
32
32
- Warn if it exceeds 4/5 (13.33ms) of 60 FPS hardcoded frame-rate (16.66ms).
33
-
- currently, there is no API to detect monitor refresh-rate at runtime due to browser security and privacy restrictions, hence hardcoded to 60 FPS.
34
33
35
34
- Count `requestAnimationFrame` calls per second (CPS).
36
35
- If requested recursively - it reflects animation FPS.
37
36
38
-
- Detect `eval` function usage in runtime, as well as `setTimeout` and `setInterval` when called with a `string` callback instead of a `function`.
37
+
- Detect `eval` function usage in runtime, as well as `setTimeout` and `setInterval` when called with a `string` callback instead of a `function`. By default - `off`, cause the fact of wrapping it, excludes the access to local scope variables from the `eval` script, and as a result, may brake the application if it does need it.
39
38
40
-
-Scan DOM each second for mounted `video`or`audio` media elements.
39
+
-Monitor mounted `video`and`audio` media elements in DOM.
41
40
- Present control panel with basic media functions.
42
41
- Show media events and number of times they have been fired.
43
42
- Show current state of properties.
44
43
- Allow to toggle the state of changeable boolean properties e.g. `controls`, `preservesPitch`...
45
44
46
-
- Prevent the system from going to Sleep state due to user inactivity for a better observational experience.
47
-
- By default `off`
45
+
- Prevent the system from going to Sleep state due to user inactivity for a better observational experience. By default - `off`.
- by default `off`, cause the fact of wrapping it, excludes the access to local scope variables from the eval script, and that, as a result, may brake the application if it does need it.
0 commit comments