This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Compression API test</title> | |
</head> | |
<body> | |
<script> | |
const compressData = async (stringToCompress) => { | |
const stringResponse = new Response(stringToCompress) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Compression API test</title> | |
</head> | |
<body> | |
<script> | |
const compressData = async (stringToCompress) => { | |
const stringResponse = new Response(stringToCompress) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.test1 { | |
--linear: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%); | |
background: var(--linear); | |
background-size: 400% 400%; | |
} | |
</style> | |
<style> | |
.test2 { |