From 4d9a3d3e1dcdaa912dd00341a668ced672847a26 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 3 Nov 2022 08:57:49 +0000 Subject: tests: Add tests for position:sticky --- test/dump_computed.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/dump_computed.h') diff --git a/test/dump_computed.h b/test/dump_computed.h index a5c4f13..2ce7849 100644 --- a/test/dump_computed.h +++ b/test/dump_computed.h @@ -2725,6 +2725,9 @@ static void dump_computed_style(const css_computed_style *style, char *buf, case CSS_POSITION_FIXED: wrote = snprintf(ptr, *len, "position: fixed\n"); break; + case CSS_POSITION_STICKY: + wrote = snprintf(ptr, *len, "position: sticky\n"); + break; default: wrote = 0; break; -- cgit v1.2.3