Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/widgets/field-sizing-input-number-relayout.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel=match href="field-sizing-input-number-relayout-ref.html">
<script src="/common/reftest-wait.js"></script>
<body>
<input id="inputa" style="field-sizing: content" type="number"><input type="number">
<script>
requestAnimationFrame(() => {
inputa.value = '';
requestAnimationFrame(() => {
inputa.value = 12345;
takeScreenshot();
});
});
</script>
</body>
</html>