blob: d803a08682d58522d417ec36c5ab844dd3436857 [file] [log] [blame]
<!DOCTYPE html>
<div style="width: 100px">
<svg viewBox="0 0 100 100">
<rect width="100" height="100" fill="green"/>
</svg>
</div>
<script>
document.querySelector('svg').setAttribute('width', 200);
document.querySelector('svg').removeAttribute('width');
</script>