Skip to content

Instantly share code, notes, and snippets.

View Joozty's full-sized avatar
🐢
Playing with code

Jozef Harag Joozty

🐢
Playing with code
View GitHub Profile
@Joozty
Joozty / memory.html
Created May 16, 2023 13:23
Memory leak in safari (CompressionStream API)
<!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)
@Joozty
Joozty / test.html
Created May 16, 2023 10:28
Compression API safari bug
<!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)
@Joozty
Joozty / gist:f7a35a8d9040868249217ac137e85473
Created November 11, 2021 10:12
.cssText property returns invalid CSS
<style>
.test1 {
--linear: linear-gradient(-90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
background: var(--linear);
background-size: 400% 400%;
}
</style>
<style>
.test2 {