From 9f9ec45a3177cc776fb5bf6adce313b6d6942467 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 2 Sep 2024 11:41:34 +0100 Subject: [PATCH] Tests/LibWeb: Correct typo in "overflow: visible" The test happened to pass anyway because `visible` is the default value. --- Tests/LibWeb/Layout/input/overflow-with-padding.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibWeb/Layout/input/overflow-with-padding.html b/Tests/LibWeb/Layout/input/overflow-with-padding.html index 62b0e6347fc..08ba1adea71 100644 --- a/Tests/LibWeb/Layout/input/overflow-with-padding.html +++ b/Tests/LibWeb/Layout/input/overflow-with-padding.html @@ -11,7 +11,7 @@ border: 1px solid black; width: 400px; height: 100px; - overflow: visable; + overflow: visible; }