Files
tubestation/layout/reftests/forms/button/dynamic-text-indent.html
Boris Zbarsky 858d80dab7 Bug 1347411 part 2. Fix stylo to properly update styles for the various frames that use FCDATA_WITH_WRAPPING_BLOCK to wrap an anonymous block around their kids. r=heycam
This handles ::-moz-button-content, ::-moz-html-canvas-content, ::-moz-svg-text,
::-moz-svg-foreign-content.

MozReview-Commit-ID: 3xk7214X2uR
2017-03-15 14:00:43 -04:00

13 lines
322 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<button>Some text</button>
<script>
onload = function() {
var obj = document.querySelector("button");
window.w = obj.getBoundingClientRect().width;
obj.style.textIndent = "50px";
document.documentElement.className = "";
}
</script>
</html>