| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM
if (window.testRunner)
testRunner.waitUntilDone();Given that the rest doesn't do anything, I think this should be
```
if (!window.testRunner)
return;
```
and then remove the check for `window.testRunner` below.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Given that the rest doesn't do anything, I think this should be
```
if (!window.testRunner)
return;
```and then remove the check for `window.testRunner` below.
This code is not inside a function. So instead I put all the logic inside `if (window.testRunner) {}`.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
4 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: third_party/blink/web_tests/fast/forms/number/number-appearance-vertical.html
Insertions: 4, Deletions: 4.
@@ -57,14 +57,14 @@
// A spinbutton should be showing on the top (left)
input.focus();
}
-if (window.testRunner)
+if (window.testRunner) {
testRunner.waitUntilDone();
-runAfterLayoutAndPaint(function() {
runAfterLayoutAndPaint(function() {
- if (window.testRunner)
+ runAfterLayoutAndPaint(function() {
testRunner.notifyDone();
+ });
});
-});
+}
</script>
</body>
</html>
```
Stabilize number-appearance-vertical hover snapshot timing
This test sets :hover pseudo-class state and then finishes immediately.
On accessibility bot runs, the snapshot can be taken too early.
Finish after two layout-and-paint updates so the post-hover snapshot is
more reliable.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |