diff --git a/bookmarklets/freeze-dom.html b/bookmarklets/freeze-dom.html new file mode 100644 index 0000000..831b7a9 --- /dev/null +++ b/bookmarklets/freeze-dom.html @@ -0,0 +1,2 @@ + +
Freezes DOM in 5 seconds for capture.
diff --git a/bookmarklets/freeze-dom.js b/bookmarklets/freeze-dom.js new file mode 100644 index 0000000..5c977c3 --- /dev/null +++ b/bookmarklets/freeze-dom.js @@ -0,0 +1,14 @@ +/** + * @bookmarklet Freeze DOM in 5 seconds + * @description Freezes DOM in 5 seconds for capture + * @author Jason Morris + * @authorUrl https://jasonmorris.com + * @tags accessibility + * @auditing true + * @pageTest true + */ +(function () { + setTimeout(function () { + debugger; + }, 5000); +})(); diff --git a/data/auditing.html b/data/auditing.html index d64c734..170abe7 100644 --- a/data/auditing.html +++ b/data/auditing.html @@ -14,6 +14,7 @@