fune/browser/base/content/test/protectionsUI/canvas-fingerprinter.html
Tim Huang 119bcc146c Bug 1863280 - Part 4: Add tests. r=pbz
This patch addes tests to verify that suspicious fingerprinter gets
properly shown on protection panel.

Differential Revision: https://phabricator.services.mozilla.com/D193456
2023-11-16 00:22:47 +00:00

22 lines
523 B
HTML

<!doctype html>
<html>
<head>
<title>A page containing a canvas fingerprinter</title>
</head>
<body>
<canvas width=200 height=200>
</canvas>
<script>
var canvas = document.querySelector("canvas");
var context = canvas.getContext("2d");
context.fillStyle = "rgb(100, 210, 0)";
context.fillRect(100, 10, 50, 50);
context.fillStyle = "#f65";
context.font = "16pt Arial";
context.fillText("<@nv45. F1n63r,Pr1n71n6!", 20, 40);
var data = canvas.toDataURL();
</script>
</body>
</html>