Safari 16.4 parsing change

"background-position: 10%" is not the same as "background-position: 10% 0%"

by shadowphiar

HTML

<div id="outer" style="background-position: 10% 0%"></div>

JavaScript

var n = document.getElementById("outer");
n.textContent = n.style.cssText;