From 5370b0f217fa8ff081fe12b0fcfedd627f60eec9 Mon Sep 17 00:00:00 2001 From: Philip Helger Date: Tue, 18 Jan 2022 19:17:39 +0100 Subject: [PATCH] Prepared for release --- README.md | 3 +++ .../test/resources/testfiles/css30/good/issue79.css | 10 ++++++++++ 2 files changed, 13 insertions(+) diff --git a/README.md b/README.md index 84d2c6a7..bb6c63e0 100644 --- a/README.md +++ b/README.md @@ -299,6 +299,9 @@ Configuration items are: ## News and noteworthy +* v6.4.4 - 2022-01-18 + * Added support for `:host-context`. See [issue #80](https://github.com/phax/ph-css/issues/80) and [PR #81](https://github.com/phax/ph-css/pull/81) - thanks @shagkur + * Improved support for the scientific number parsing. See [issue #82](https://github.com/phax/ph-css/issues/82) and [PR #83](https://github.com/phax/ph-css/pull/83) - thanks @shagkur * v6.4.3 - 2022-01-13 * Extended API of `CSSReaderDeclarationList`. See [issue #78](https://github.com/phax/ph-css/issues/78) - thanks @shagkur * Added support for the scientific number (as in `1e6`) support in parsing. See [issue #79](https://github.com/phax/ph-css/issues/79) - thanks @shagkur diff --git a/ph-css/src/test/resources/testfiles/css30/good/issue79.css b/ph-css/src/test/resources/testfiles/css30/good/issue79.css index 57ec44cc..15fad1f1 100644 --- a/ph-css/src/test/resources/testfiles/css30/good/issue79.css +++ b/ph-css/src/test/resources/testfiles/css30/good/issue79.css @@ -14,6 +14,11 @@ div { padding: 1.5e-06; padding: 1.5e+6; padding: 1.5e+06; + padding: 123.5678e6; + padding: 123.5678e-6; + padding: 123.5678e-06; + padding: 123.5678e+6; + padding: 123.5678e+06; } span { @@ -32,4 +37,9 @@ span { padding: 1.5e-06em; padding: 1.5e+6em; padding: 1.5e+06em; + padding: 123.5678e6em; + padding: 123.5678e-6em; + padding: 123.5678e-06em; + padding: 123.5678e+6em; + padding: 123.5678e+06em; }