gecko-dev/layout/reftests/bugs/1410028.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
319 B
HTML
Raw Normal View History

<!doctype html>
<div></div>
<script>
let setStyle = (el, props) => {
for (prop in props)
el.style.setProperty(prop, props[prop]);
};
setStyle(document.querySelector('div'), {
all: 'initial',
'background-color': 'blue',
display: 'block',
width: '100px',
height: '100px',
padding: '10px'
});
</script>