diff --git a/.github/workflows/createpr.yml b/.github/workflows/createpr.yml new file mode 100644 index 000000000..697ed449c --- /dev/null +++ b/.github/workflows/createpr.yml @@ -0,0 +1,9 @@ +name: CreatePR + +on: + create: + +jobs: + call-createpr: + uses: XodoDocs/itext-github-workflows/.github/workflows/createpr.yml@master + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/createrebase.yml b/.github/workflows/createrebase.yml new file mode 100644 index 000000000..b3ecce021 --- /dev/null +++ b/.github/workflows/createrebase.yml @@ -0,0 +1,14 @@ +name: "Create rebased branch" + +on: + pull_request: + branches: + - develop + types: + - assigned + - synchronize + +jobs: + call-createrebase: + uses: XodoDocs/itext-github-workflows/.github/workflows/createrebase.yml@master + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/licensecheck.yml b/.github/workflows/licensecheck.yml new file mode 100644 index 000000000..f4bc9430f --- /dev/null +++ b/.github/workflows/licensecheck.yml @@ -0,0 +1,16 @@ +name: LicenseCheck + +on: + push: + # 'branches-ignore' or 'branches' can be used to filter specific branches. + # By default, without any filters, it runs on every push to all branches. + # To be explicit, you can use: + branches-ignore: + - 'develop' + - 'master' + - 'rebased/*' + +jobs: + call-licensecheck: + uses: XodoDocs/itext-github-workflows/.github/workflows/licensecheck.yml@master + secrets: inherit diff --git a/pom.xml b/pom.xml index c9e947aa3..bb53c4ab7 100644 --- a/pom.xml +++ b/pom.xml @@ -5,12 +5,12 @@ com.itextpdf root - 9.5.0 + 9.6.0-SNAPSHOT html2pdf - 6.3.1 + 6.3.2-SNAPSHOT pdfHTML pdfHTML is an iText add-on that lets you to parse (X)HTML snippets and the associated CSS and converts @@ -192,6 +192,13 @@ --initialize-at-build-time=org.junit.validator.PublicClassValidator --initialize-at-build-time=org.junit.platform.engine.TestTag + --initialize-at-build-time=org.junit.jupiter.engine + --initialize-at-build-time=org.junit.platform.launcher + --initialize-at-build-time=org.junit.jupiter.engine.extension.TimeoutExtension + --initialize-at-build-time=org.junit.jupiter.engine.extension.RepeatedTestExtension + --initialize-at-build-time=org.junit.platform.commons.util.LruCache + --initialize-at-build-time=org.junit.jupiter.api.extension.ExtensionContext$Namespace + --enable-url-protocols=http,https,ftp -H:+AddAllCharsets diff --git a/src/main/java/com/itextpdf/html2pdf/ConverterProperties.java b/src/main/java/com/itextpdf/html2pdf/ConverterProperties.java index 14032bb3f..0ac14be48 100644 --- a/src/main/java/com/itextpdf/html2pdf/ConverterProperties.java +++ b/src/main/java/com/itextpdf/html2pdf/ConverterProperties.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -27,6 +27,7 @@ This file is part of the iText (R) project. import com.itextpdf.html2pdf.attach.impl.OutlineHandler; import com.itextpdf.html2pdf.attach.util.AlternateDescriptionResolver; import com.itextpdf.html2pdf.css.apply.ICssApplierFactory; +import com.itextpdf.kernel.exceptions.KernelExceptionMessageConstant; import com.itextpdf.kernel.pdf.PdfAConformance; import com.itextpdf.kernel.pdf.PdfConformance; import com.itextpdf.kernel.pdf.PdfOutputIntent; @@ -38,6 +39,8 @@ This file is part of the iText (R) project. import java.io.InputStream; import java.util.HashMap; import java.util.Map; +import java.util.Set; +import java.util.function.Supplier; /** * Properties that will be used by the {@link com.itextpdf.html2pdf.HtmlConverter}. @@ -49,7 +52,7 @@ public class ConverterProperties { */ private static final int DEFAULT_LIMIT_OF_LAYOUTS = 10; - private final HashMap, Object> dependencies = new HashMap<>(); + private final Map, Supplier> dependencies = new HashMap<>(); /** * The media device description. @@ -130,7 +133,7 @@ public class ConverterProperties { * Instantiates a new {@link ConverterProperties} instance. */ public ConverterProperties() { - this.dependencies.put(AlternateDescriptionResolver.class, new AlternateDescriptionResolver()); + this.dependencies.put(AlternateDescriptionResolver.class, () -> new AlternateDescriptionResolver()); } /** @@ -155,9 +158,7 @@ public ConverterProperties(ConverterProperties other) { this.continuousContainerEnabled = other.continuousContainerEnabled; this.conformance = other.conformance; this.outputIntent = other.outputIntent; - for (Class aClass : other.dependencies.keySet()) { - this.dependencies.put(aClass, other.dependencies.get(aClass)); - } + this.dependencies.putAll(other.dependencies); } /** @@ -571,8 +572,56 @@ public ConverterProperties setContinuousContainerEnabled(boolean value) { * Gets the dependencies. * * @return the dependencies + * + * @deprecated in favor of {@link ConverterProperties#getDependenciesClasses()}, + * {@link ConverterProperties#getDependencySupplier(Class)} */ + @Deprecated public Map, Object> getDependencies() { - return dependencies; + Map, Object> currentInstances = new HashMap<>(); + for (Map.Entry, Supplier> entry : dependencies.entrySet()) { + currentInstances.put(entry.getKey(), entry.getValue().get()); + } + return currentInstances; + } + + /** + * Register custom dependency for the document. + * + * @param clazz type of the dependency + * @param instanceSupplier the instance of the supplier for the dependency + * + * @return this {@link ConverterProperties} instance + */ + public ConverterProperties registerDependency(Class clazz, Supplier instanceSupplier) { + if (clazz == null) { + throw new IllegalArgumentException(KernelExceptionMessageConstant.TYPE_SHOULD_NOT_BE_NULL); + } + if (instanceSupplier == null) { + throw new IllegalArgumentException(KernelExceptionMessageConstant.INSTANCE_SUPPLIER_SHOULD_NOT_BE_NULL); + } + dependencies.put(clazz, instanceSupplier); + return this; + } + + /** + * Get all dependencies classes. + * + * @return the set of dependencies classes + */ + public Set> getDependenciesClasses() { + return dependencies.keySet(); + } + + /** + * Get specific dependency supplier. + * + * @param clazz the dependency class to return supplier for + * + * @return supplier for the dependency. + * May return {code null} if no dependency supplier is present for specified class. + */ + public Supplier getDependencySupplier(Class clazz) { + return dependencies.get(clazz); } } diff --git a/src/main/java/com/itextpdf/html2pdf/HtmlConverter.java b/src/main/java/com/itextpdf/html2pdf/HtmlConverter.java index 4c0722be6..d38df008a 100644 --- a/src/main/java/com/itextpdf/html2pdf/HtmlConverter.java +++ b/src/main/java/com/itextpdf/html2pdf/HtmlConverter.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/ProcessorContextCreator.java b/src/main/java/com/itextpdf/html2pdf/ProcessorContextCreator.java index 81312fefe..d7415aeb0 100644 --- a/src/main/java/com/itextpdf/html2pdf/ProcessorContextCreator.java +++ b/src/main/java/com/itextpdf/html2pdf/ProcessorContextCreator.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/actions/data/PdfHtmlProductData.java b/src/main/java/com/itextpdf/html2pdf/actions/data/PdfHtmlProductData.java index 900c3dc60..67f4e7f4e 100644 --- a/src/main/java/com/itextpdf/html2pdf/actions/data/PdfHtmlProductData.java +++ b/src/main/java/com/itextpdf/html2pdf/actions/data/PdfHtmlProductData.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -30,9 +30,9 @@ This file is part of the iText (R) project. */ public final class PdfHtmlProductData { private static final String PDF_HTML_PUBLIC_PRODUCT_NAME = "pdfHTML"; - private static final String PDF_HTML_VERSION = "6.3.1"; + private static final String PDF_HTML_VERSION = "6.3.2-SNAPSHOT"; private static final int PDF_HTML_COPYRIGHT_SINCE = 2000; - private static final int PDF_HTML_COPYRIGHT_TO = 2025; + private static final int PDF_HTML_COPYRIGHT_TO = 2026; private static final ProductData PDF_HTML_PRODUCT_DATA = new ProductData(PDF_HTML_PUBLIC_PRODUCT_NAME, ProductNameConstant.PDF_HTML, PDF_HTML_VERSION, PDF_HTML_COPYRIGHT_SINCE, PDF_HTML_COPYRIGHT_TO); diff --git a/src/main/java/com/itextpdf/html2pdf/actions/events/PdfHtmlProductEvent.java b/src/main/java/com/itextpdf/html2pdf/actions/events/PdfHtmlProductEvent.java index 99b8824a7..5f9500bce 100644 --- a/src/main/java/com/itextpdf/html2pdf/actions/events/PdfHtmlProductEvent.java +++ b/src/main/java/com/itextpdf/html2pdf/actions/events/PdfHtmlProductEvent.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/Attacher.java b/src/main/java/com/itextpdf/html2pdf/attach/Attacher.java index 5cc5ba14b..9ef5fe66e 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/Attacher.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/Attacher.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/DocumentTreeUtil.java b/src/main/java/com/itextpdf/html2pdf/attach/DocumentTreeUtil.java index 884203200..54cd751bf 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/DocumentTreeUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/DocumentTreeUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/IDocumentTreeJob.java b/src/main/java/com/itextpdf/html2pdf/attach/IDocumentTreeJob.java index 93a801eeb..45405d5e1 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/IDocumentTreeJob.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/IDocumentTreeJob.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/IHtmlProcessor.java b/src/main/java/com/itextpdf/html2pdf/attach/IHtmlProcessor.java index 172daa88e..fc4f17cf0 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/IHtmlProcessor.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/IHtmlProcessor.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/IOutlineMarkExtractor.java b/src/main/java/com/itextpdf/html2pdf/attach/IOutlineMarkExtractor.java index ac0715fa5..e3b012ede 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/IOutlineMarkExtractor.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/IOutlineMarkExtractor.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/ITagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/ITagWorker.java index 9046e7c17..9cbd008cc 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/ITagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/ITagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/ITagWorkerFactory.java b/src/main/java/com/itextpdf/html2pdf/attach/ITagWorkerFactory.java index 3be81d803..37dc94cdd 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/ITagWorkerFactory.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/ITagWorkerFactory.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/ProcessorContext.java b/src/main/java/com/itextpdf/html2pdf/attach/ProcessorContext.java index 94bab4a5f..41285e859 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/ProcessorContext.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/ProcessorContext.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -48,8 +48,6 @@ This file is part of the iText (R) project. import com.itextpdf.styledxmlparser.css.media.MediaDeviceDescription; import com.itextpdf.styledxmlparser.resolver.resource.ResourceResolver; -import java.util.Map; - /** * Keeps track of the context of the processor. */ @@ -227,8 +225,8 @@ public ProcessorContext(ConverterProperties converterProperties) { pdfAConformanceFromProperties = new PdfConformance(converterProperties.getPdfAConformance()); processingInlineSvg = false; continuousContainerEnabled = converterProperties.isContinuousContainerEnabled(); - for (Map.Entry, Object> entry : converterProperties.getDependencies().entrySet()) { - diContainer.register(entry.getKey(), entry.getValue()); + for (Class clazz : converterProperties.getDependenciesClasses()) { + diContainer.register(clazz, converterProperties.getDependencySupplier(clazz).get()); } } diff --git a/src/main/java/com/itextpdf/html2pdf/attach/State.java b/src/main/java/com/itextpdf/html2pdf/attach/State.java index 0ed1567d5..9358600ec 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/State.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/State.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/ClassOutlineMarkExtractor.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/ClassOutlineMarkExtractor.java index 039dacd09..faacb09c8 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/ClassOutlineMarkExtractor.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/ClassOutlineMarkExtractor.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultHtmlProcessor.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultHtmlProcessor.java index 6723febd5..8a77bd9c3 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultHtmlProcessor.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultHtmlProcessor.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactory.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactory.java index 88ca11be1..f8dac18dc 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactory.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactory.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerMapping.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerMapping.java index 8bcbe7eaa..3b8875367 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerMapping.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerMapping.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/HtmlMetaInfoContainer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/HtmlMetaInfoContainer.java index a8ca4bc72..c50b28362 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/HtmlMetaInfoContainer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/HtmlMetaInfoContainer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/LabelContext.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/LabelContext.java index b1f347a88..123688219 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/LabelContext.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/LabelContext.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/LabelUtil.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/LabelUtil.java index c65dc76ed..a6eecfc7c 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/LabelUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/LabelUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/LinkContext.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/LinkContext.java index 7bb0082d7..6ed2c4637 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/LinkContext.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/LinkContext.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/OutlineHandler.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/OutlineHandler.java index ecd88d273..f5d321607 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/OutlineHandler.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/OutlineHandler.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/TagOutlineMarkExtractor.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/TagOutlineMarkExtractor.java index 4b788168b..8921ece74 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/TagOutlineMarkExtractor.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/TagOutlineMarkExtractor.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.java index 22ae8c01f..2097abea1 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/DimensionContainer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/DimensionContainer.java index 77073f2dd..7dfe284d9 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/DimensionContainer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/DimensionContainer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HeightDimensionContainer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HeightDimensionContainer.java index 1e3ec53ea..a066854a2 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HeightDimensionContainer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HeightDimensionContainer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfProperty.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfProperty.java index 293fb5f13..5c0ade2b2 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfProperty.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfProperty.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.java index b1641c403..89e22d91a 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocument.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocument.java index d14737346..6244fa290 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocument.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocument.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRenderer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRenderer.java index 262e73f49..eacb6cb6e 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRenderer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRenderer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreak.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreak.java index c13d40b77..df9f9130b 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreak.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreak.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreakType.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreakType.java index f536d0612..321f2fb86 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreakType.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlPageBreakType.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProcessor.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProcessor.java index aa0638a9d..68b6c129c 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProcessor.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProcessor.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProperties.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProperties.java index 5be2d5a0e..54bec5d15 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProperties.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageContextProperties.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountElement.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountElement.java index 6d4522526..a8c15623a 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountElement.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountElement.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRenderer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRenderer.java index a54514692..4850b7e65 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRenderer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRenderer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountType.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountType.java index 949376581..9507c5121 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountType.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountType.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageMarginBoxBuilder.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageMarginBoxBuilder.java index 23ab72849..f526bb85b 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageMarginBoxBuilder.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageMarginBoxBuilder.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParser.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParser.java index a1c8e8915..98a2a24c0 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParser.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParser.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElement.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElement.java index 2456c53fa..93a283682 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElement.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElement.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRenderer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRenderer.java index ca7757fe8..15272667b 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRenderer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRenderer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElement.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElement.java index 443a34cb4..f174690e2 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElement.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElement.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElementContainer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElementContainer.java index 1dbd42773..618e3e062 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElementContainer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/RunningElementContainer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainer.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainer.java index 1e7974332..775aeb35b 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainer.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ABlockTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ABlockTagWorker.java index 1a46f5de1..5b2b00cc7 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ABlockTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ABlockTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ATagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ATagWorker.java index e39d2d18f..fe29360ad 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ATagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ATagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/AbbrTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/AbbrTagWorker.java index c01167946..45c2d4002 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/AbbrTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/AbbrTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/BodyTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/BodyTagWorker.java index 4e24f3316..b8888c8ad 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/BodyTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/BodyTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/BrTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/BrTagWorker.java index b7a3e0e72..22cfe0577 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/BrTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/BrTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ButtonTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ButtonTagWorker.java index fc425f283..f200fab65 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ButtonTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ButtonTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/CaptionTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/CaptionTagWorker.java index 788cc124b..e503df920 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/CaptionTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/CaptionTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ColTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ColTagWorker.java index 40fd39c78..467cc302b 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ColTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ColTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ColgroupTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ColgroupTagWorker.java index 268ea4503..5a3c59571 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ColgroupTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ColgroupTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayFlexTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayFlexTagWorker.java index 8ce7878ca..19194c0e9 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayFlexTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayFlexTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayGridTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayGridTagWorker.java index 0221ed7f3..093e40dff 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayGridTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayGridTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableRowTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableRowTagWorker.java index ead7364ee..3f7ff2c6e 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableRowTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableRowTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableTagWorker.java index 6524aecff..ad706678c 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DivTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DivTagWorker.java index 661d6e749..9431dcee4 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DivTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/DivTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HTagWorker.java index 5c23c6c18..5958542ae 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HrTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HrTagWorker.java index 31cd1a747..5bc2b6479 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HrTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HrTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HtmlTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HtmlTagWorker.java index 4b623ed0c..a2185a042 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HtmlTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/HtmlTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/IDisplayAware.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/IDisplayAware.java index 53ca918ea..f04cd34a4 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/IDisplayAware.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/IDisplayAware.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ImgTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ImgTagWorker.java index 4e5fc3ecf..a4559635a 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ImgTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ImgTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/InputTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/InputTagWorker.java index f9545b14c..fcb5ae23d 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/InputTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/InputTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/LiTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/LiTagWorker.java index 2cc01e86c..63029df31 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/LiTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/LiTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/LinkTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/LinkTagWorker.java index db7291c26..34e53122e 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/LinkTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/LinkTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/MetaTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/MetaTagWorker.java index 3d818cfb3..b598ffae2 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/MetaTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/MetaTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ObjectTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ObjectTagWorker.java index d06b08421..64f75553a 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ObjectTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ObjectTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/OptGroupTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/OptGroupTagWorker.java index 1fd0b7883..4cb2cfc12 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/OptGroupTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/OptGroupTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/OptionTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/OptionTagWorker.java index bd2fab908..22a069af8 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/OptionTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/OptionTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PTagWorker.java index 4292fecee..db81ce316 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PageCountWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PageCountWorker.java index 90e32cd50..c919d10d3 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PageCountWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PageCountWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PageMarginBoxWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PageMarginBoxWorker.java index 88d2181c7..ddedca5d3 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PageMarginBoxWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PageMarginBoxWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PlaceholderTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PlaceholderTagWorker.java index df94df67c..67e4df5b3 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PlaceholderTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PlaceholderTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PreTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PreTagWorker.java index 736542b87..ef5887521 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PreTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/PreTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/RunningElementTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/RunningElementTagWorker.java index 61d99aea2..78191c262 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/RunningElementTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/RunningElementTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SelectTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SelectTagWorker.java index 50c3e1365..b79bec24b 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SelectTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SelectTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SpanTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SpanTagWorker.java index fffb4f8c1..00372a16e 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SpanTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SpanTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SvgTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SvgTagWorker.java index 756f16d4c..8bf04228f 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SvgTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/SvgTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableFooterTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableFooterTagWorker.java index 1c0d44d3b..bdf2601fb 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableFooterTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableFooterTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableHeaderTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableHeaderTagWorker.java index e03f6d621..721c13f1d 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableHeaderTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableHeaderTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableTagWorker.java index 45e2c977e..8447f3f66 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TableTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TdTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TdTagWorker.java index 76bc958cf..9d9bfbff8 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TdTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TdTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TextAreaTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TextAreaTagWorker.java index 4b9702759..3fff5c2ff 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TextAreaTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TextAreaTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ThTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ThTagWorker.java index 19da7c6ec..439df0fae 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ThTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/ThTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TitleTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TitleTagWorker.java index b27420126..49d7c7b81 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TitleTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TitleTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TrTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TrTagWorker.java index 4bb70a900..5972374fe 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TrTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/TrTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/UlOlTagWorker.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/UlOlTagWorker.java index c79b010ff..180f767e2 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/UlOlTagWorker.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/UlOlTagWorker.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/util/ATagUtil.java b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/util/ATagUtil.java index 90834e18a..be6e7df69 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/util/ATagUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/impl/tags/util/ATagUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/util/AccessiblePropHelper.java b/src/main/java/com/itextpdf/html2pdf/attach/util/AccessiblePropHelper.java index 6a82fa497..9f4933077 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/util/AccessiblePropHelper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/util/AccessiblePropHelper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/util/AlternateDescriptionResolver.java b/src/main/java/com/itextpdf/html2pdf/attach/util/AlternateDescriptionResolver.java index d6f0706d3..632277137 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/util/AlternateDescriptionResolver.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/util/AlternateDescriptionResolver.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/util/ContextMappingHelper.java b/src/main/java/com/itextpdf/html2pdf/attach/util/ContextMappingHelper.java index 1bd182e86..4566b91c7 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/util/ContextMappingHelper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/util/ContextMappingHelper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/util/LinkHelper.java b/src/main/java/com/itextpdf/html2pdf/attach/util/LinkHelper.java index b9b2ff412..b38a23ef9 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/util/LinkHelper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/util/LinkHelper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/util/RowColHelper.java b/src/main/java/com/itextpdf/html2pdf/attach/util/RowColHelper.java index 7037a21b9..5c186cdc2 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/util/RowColHelper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/util/RowColHelper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/util/TrimUtil.java b/src/main/java/com/itextpdf/html2pdf/attach/util/TrimUtil.java index 8c8f02bcf..5503d51c8 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/util/TrimUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/util/TrimUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/util/WaitingColgroupsHelper.java b/src/main/java/com/itextpdf/html2pdf/attach/util/WaitingColgroupsHelper.java index 03384d84e..fc875e540 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/util/WaitingColgroupsHelper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/util/WaitingColgroupsHelper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/util/WaitingInlineElementsHelper.java b/src/main/java/com/itextpdf/html2pdf/attach/util/WaitingInlineElementsHelper.java index 6264c9cd9..52598a484 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/util/WaitingInlineElementsHelper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/util/WaitingInlineElementsHelper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/ColWrapper.java b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/ColWrapper.java index 9a9c389ff..cd4645201 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/ColWrapper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/ColWrapper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/ColgroupWrapper.java b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/ColgroupWrapper.java index 3273bf9c7..781c3a3e3 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/ColgroupWrapper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/ColgroupWrapper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/IWrapElement.java b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/IWrapElement.java index a0add06a2..1bca7e36b 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/IWrapElement.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/IWrapElement.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/SpanWrapper.java b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/SpanWrapper.java index fae701dd2..fb79a2dfb 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/SpanWrapper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/SpanWrapper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/TableRowWrapper.java b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/TableRowWrapper.java index ff1de0d99..e5391eca8 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/TableRowWrapper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/TableRowWrapper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/TableWrapper.java b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/TableWrapper.java index 62dc2f1f5..59ba41741 100644 --- a/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/TableWrapper.java +++ b/src/main/java/com/itextpdf/html2pdf/attach/wrapelement/TableWrapper.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/CssConstants.java b/src/main/java/com/itextpdf/html2pdf/css/CssConstants.java index 280f21787..ca9b555be 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/CssConstants.java +++ b/src/main/java/com/itextpdf/html2pdf/css/CssConstants.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/ICssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/ICssApplier.java index ef9734a21..040d5e177 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/ICssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/ICssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/ICssApplierFactory.java b/src/main/java/com/itextpdf/html2pdf/css/apply/ICssApplierFactory.java index b6aaa9364..e3e4b41ed 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/ICssApplierFactory.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/ICssApplierFactory.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/BlockCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/BlockCssApplier.java index 59c05cf31..f5ef318e2 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/BlockCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/BlockCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/BodyTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/BodyTagCssApplier.java index 1ceec9fd3..0d1e8840a 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/BodyTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/BodyTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/CaptionCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/CaptionCssApplier.java index cfa3e6989..4d61f7e1f 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/CaptionCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/CaptionCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/ColTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/ColTagCssApplier.java index d05400c2f..7385f8dc2 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/ColTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/ColTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/ColgroupTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/ColgroupTagCssApplier.java index 0c4f44434..304c537a7 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/ColgroupTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/ColgroupTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/CssContentLinearGradientApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/CssContentLinearGradientApplier.java index b60d2cf6d..577aad11b 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/CssContentLinearGradientApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/CssContentLinearGradientApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DefaultCssApplierFactory.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DefaultCssApplierFactory.java index 0c7d3d1ec..ca8784e5a 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DefaultCssApplierFactory.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DefaultCssApplierFactory.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DefaultTagCssApplierMapping.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DefaultTagCssApplierMapping.java index 2db0af0df..a9b1478bd 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DefaultTagCssApplierMapping.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DefaultTagCssApplierMapping.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayFlexTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayFlexTagCssApplier.java index c8a377038..3d94110cd 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayFlexTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayFlexTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayGridTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayGridTagCssApplier.java index 3c3722736..d86c02d44 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayGridTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayGridTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayTableRowTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayTableRowTagCssApplier.java index e11d7c03d..881ca60e9 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayTableRowTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DisplayTableRowTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DlTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DlTagCssApplier.java index 57710ae21..c6abd2b35 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DlTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/DlTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/HrTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/HrTagCssApplier.java index 537077156..c669a5634 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/HrTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/HrTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/HtmlTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/HtmlTagCssApplier.java index bfc07d0d0..7662d5557 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/HtmlTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/HtmlTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/LiTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/LiTagCssApplier.java index 6358a0e27..423eae9b3 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/LiTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/LiTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/MultiColumnCssApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/MultiColumnCssApplierUtil.java index e05ffd022..08d65a657 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/MultiColumnCssApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/MultiColumnCssApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/PageMarginBoxCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/PageMarginBoxCssApplier.java index 38eb4d533..115111982 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/PageMarginBoxCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/PageMarginBoxCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/PlaceholderCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/PlaceholderCssApplier.java index 5c595773c..01a3347d2 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/PlaceholderCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/PlaceholderCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/SpanTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/SpanTagCssApplier.java index ca7c4a58b..abedffed6 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/SpanTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/SpanTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TableTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TableTagCssApplier.java index 02ce914e5..9b4a76ce9 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TableTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TableTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TdTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TdTagCssApplier.java index 3867758ac..003ffe6dc 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TdTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TdTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TrTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TrTagCssApplier.java index 5680d873d..2faf0acd8 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TrTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/TrTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/UlOlTagCssApplier.java b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/UlOlTagCssApplier.java index e1b4edfe0..eccc543f5 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/impl/UlOlTagCssApplier.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/impl/UlOlTagCssApplier.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/BackgroundApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/BackgroundApplierUtil.java index c32c00e3f..d7f68a5d5 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/BackgroundApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/BackgroundApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/BorderStyleApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/BorderStyleApplierUtil.java index 71712d69c..fa9f5c455 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/BorderStyleApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/BorderStyleApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/CounterProcessorUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/CounterProcessorUtil.java index 7878a3234..29eea98f0 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/CounterProcessorUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/CounterProcessorUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/FlexApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/FlexApplierUtil.java index 07d1344a4..865b31387 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/FlexApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/FlexApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/FloatApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/FloatApplierUtil.java index ae4935a94..02735007a 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/FloatApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/FloatApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/FontStyleApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/FontStyleApplierUtil.java index c2653613c..7b02e519d 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/FontStyleApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/FontStyleApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -207,7 +207,8 @@ public static void applyFontStyles(Map cssProps, ProcessorContex String letterSpacing = cssProps.get(CssConstants.LETTER_SPACING); if (letterSpacing != null && !CssConstants.NORMAL.equals(letterSpacing)) { UnitValue letterSpacingValue = CssDimensionParsingUtils.parseLengthValueToPt(letterSpacing, em, rem); - if (letterSpacingValue.isPointValue()) { + //TODO DEVSIX-4723 Remove null check, should be already processed properly in case unset value + if (letterSpacingValue != null && letterSpacingValue.isPointValue()) { element.setProperty(Property.CHARACTER_SPACING, letterSpacingValue.getValue()); } else { // browsers ignore values in percents diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/GridApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/GridApplierUtil.java index bcacb9f48..d0a788aa2 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/GridApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/GridApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/HyphenationApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/HyphenationApplierUtil.java index bce829c55..98426007a 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/HyphenationApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/HyphenationApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/ListStyleApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/ListStyleApplierUtil.java index a52097e0d..e83712b7d 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/ListStyleApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/ListStyleApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/MarginApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/MarginApplierUtil.java index 8c1716c11..4ff69d8a5 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/MarginApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/MarginApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/OpacityApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/OpacityApplierUtil.java index 270f3bcfa..3bd965df5 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/OpacityApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/OpacityApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/OrphansWidowsApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/OrphansWidowsApplierUtil.java index 131c0c8dd..2ada061a2 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/OrphansWidowsApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/OrphansWidowsApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/OutlineApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/OutlineApplierUtil.java index ef2d8ea23..224c5cc85 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/OutlineApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/OutlineApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/OverflowApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/OverflowApplierUtil.java index 1b9062f11..fa460ecc0 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/OverflowApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/OverflowApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/PaddingApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/PaddingApplierUtil.java index 57afeb68c..7b10bff5d 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/PaddingApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/PaddingApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/PageBreakApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/PageBreakApplierUtil.java index 73e153534..83f6959db 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/PageBreakApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/PageBreakApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/PositionApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/PositionApplierUtil.java index 77a8a35e8..445d86ad1 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/PositionApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/PositionApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/SupportedColColgroupPropertiesUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/SupportedColColgroupPropertiesUtil.java index 056a496fa..c56b416b6 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/SupportedColColgroupPropertiesUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/SupportedColColgroupPropertiesUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/TextDecorationApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/TextDecorationApplierUtil.java index ff1391cd2..fcf63580d 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/TextDecorationApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/TextDecorationApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/TransformationApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/TransformationApplierUtil.java index 5c6eb5a1e..7bc0e80ed 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/TransformationApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/TransformationApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/VerticalAlignmentApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/VerticalAlignmentApplierUtil.java index eff6566e9..12bd64fa8 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/VerticalAlignmentApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/VerticalAlignmentApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/apply/util/WidthHeightApplierUtil.java b/src/main/java/com/itextpdf/html2pdf/css/apply/util/WidthHeightApplierUtil.java index 2d11148e3..60808600d 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/apply/util/WidthHeightApplierUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/css/apply/util/WidthHeightApplierUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/page/CssRunningManager.java b/src/main/java/com/itextpdf/html2pdf/css/page/CssRunningManager.java index c6aaaed63..306ea8aa1 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/page/CssRunningManager.java +++ b/src/main/java/com/itextpdf/html2pdf/css/page/CssRunningManager.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/page/PageMarginRunningElementNode.java b/src/main/java/com/itextpdf/html2pdf/css/page/PageMarginRunningElementNode.java index 5472aa5a4..dd2d3c07b 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/page/PageMarginRunningElementNode.java +++ b/src/main/java/com/itextpdf/html2pdf/css/page/PageMarginRunningElementNode.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContentElementNode.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContentElementNode.java index 83740624c..140a6ad4d 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContentElementNode.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContentElementNode.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolver.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolver.java index ae98b5d42..e0a4233e9 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolver.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolver.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContext.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContext.java index 3048778e9..80b387624 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContext.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/CssContext.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/DefaultCssResolver.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/DefaultCssResolver.java index 43ff378fa..5b0eea10f 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/DefaultCssResolver.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/DefaultCssResolver.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverter.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverter.java index 5c61e485f..819ca85dc 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverter.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverter.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/UserAgentCss.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/UserAgentCss.java index 80fac1958..31092814a 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/UserAgentCss.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/UserAgentCss.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/CounterDigitsGlyphStyle.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/CounterDigitsGlyphStyle.java index dddfc1e81..94c02c679 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/CounterDigitsGlyphStyle.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/CounterDigitsGlyphStyle.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/CssCounterManager.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/CssCounterManager.java index 7f8fc5d8f..4bc6b4bfb 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/CssCounterManager.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/CssCounterManager.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageCountElementNode.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageCountElementNode.java index e67a44180..61f43958f 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageCountElementNode.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageCountElementNode.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageTargetCountElementNode.java b/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageTargetCountElementNode.java index ec3df2395..c5016fc48 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageTargetCountElementNode.java +++ b/src/main/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageTargetCountElementNode.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/css/util/CssStyleSheetAnalyzer.java b/src/main/java/com/itextpdf/html2pdf/css/util/CssStyleSheetAnalyzer.java index d8f30ada9..449e286f9 100644 --- a/src/main/java/com/itextpdf/html2pdf/css/util/CssStyleSheetAnalyzer.java +++ b/src/main/java/com/itextpdf/html2pdf/css/util/CssStyleSheetAnalyzer.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/exceptions/CssApplierInitializationException.java b/src/main/java/com/itextpdf/html2pdf/exceptions/CssApplierInitializationException.java index 7c648155f..cf3a5836a 100644 --- a/src/main/java/com/itextpdf/html2pdf/exceptions/CssApplierInitializationException.java +++ b/src/main/java/com/itextpdf/html2pdf/exceptions/CssApplierInitializationException.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/exceptions/Html2PdfException.java b/src/main/java/com/itextpdf/html2pdf/exceptions/Html2PdfException.java index 60f447081..af451e81e 100644 --- a/src/main/java/com/itextpdf/html2pdf/exceptions/Html2PdfException.java +++ b/src/main/java/com/itextpdf/html2pdf/exceptions/Html2PdfException.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/exceptions/TagWorkerInitializationException.java b/src/main/java/com/itextpdf/html2pdf/exceptions/TagWorkerInitializationException.java index 23aa06e48..28f5df8cb 100644 --- a/src/main/java/com/itextpdf/html2pdf/exceptions/TagWorkerInitializationException.java +++ b/src/main/java/com/itextpdf/html2pdf/exceptions/TagWorkerInitializationException.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/html/AttributeConstants.java b/src/main/java/com/itextpdf/html2pdf/html/AttributeConstants.java index d3614f457..3d759c884 100644 --- a/src/main/java/com/itextpdf/html2pdf/html/AttributeConstants.java +++ b/src/main/java/com/itextpdf/html2pdf/html/AttributeConstants.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/html/HtmlUtils.java b/src/main/java/com/itextpdf/html2pdf/html/HtmlUtils.java index 9383d0397..7e6979c33 100644 --- a/src/main/java/com/itextpdf/html2pdf/html/HtmlUtils.java +++ b/src/main/java/com/itextpdf/html2pdf/html/HtmlUtils.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/html/TagConstants.java b/src/main/java/com/itextpdf/html2pdf/html/TagConstants.java index 3ea269f80..0359788c8 100644 --- a/src/main/java/com/itextpdf/html2pdf/html/TagConstants.java +++ b/src/main/java/com/itextpdf/html2pdf/html/TagConstants.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/logs/Html2PdfLogMessageConstant.java b/src/main/java/com/itextpdf/html2pdf/logs/Html2PdfLogMessageConstant.java index ffa206a56..0fc1b4254 100644 --- a/src/main/java/com/itextpdf/html2pdf/logs/Html2PdfLogMessageConstant.java +++ b/src/main/java/com/itextpdf/html2pdf/logs/Html2PdfLogMessageConstant.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/resolver/font/DefaultFontProvider.java b/src/main/java/com/itextpdf/html2pdf/resolver/font/DefaultFontProvider.java index 48d348b33..fbd732a40 100644 --- a/src/main/java/com/itextpdf/html2pdf/resolver/font/DefaultFontProvider.java +++ b/src/main/java/com/itextpdf/html2pdf/resolver/font/DefaultFontProvider.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/resolver/form/FormFieldNameResolver.java b/src/main/java/com/itextpdf/html2pdf/resolver/form/FormFieldNameResolver.java index 40525b968..955b4f595 100644 --- a/src/main/java/com/itextpdf/html2pdf/resolver/form/FormFieldNameResolver.java +++ b/src/main/java/com/itextpdf/html2pdf/resolver/form/FormFieldNameResolver.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/resolver/form/RadioCheckResolver.java b/src/main/java/com/itextpdf/html2pdf/resolver/form/RadioCheckResolver.java index cf805a3ef..34ba72106 100644 --- a/src/main/java/com/itextpdf/html2pdf/resolver/form/RadioCheckResolver.java +++ b/src/main/java/com/itextpdf/html2pdf/resolver/form/RadioCheckResolver.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/resolver/resource/HtmlResourceResolver.java b/src/main/java/com/itextpdf/html2pdf/resolver/resource/HtmlResourceResolver.java index 4bbaef120..4dce9f337 100644 --- a/src/main/java/com/itextpdf/html2pdf/resolver/resource/HtmlResourceResolver.java +++ b/src/main/java/com/itextpdf/html2pdf/resolver/resource/HtmlResourceResolver.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/util/SvgProcessingUtil.java b/src/main/java/com/itextpdf/html2pdf/util/SvgProcessingUtil.java index 4155ef1e5..8516b535a 100644 --- a/src/main/java/com/itextpdf/html2pdf/util/SvgProcessingUtil.java +++ b/src/main/java/com/itextpdf/html2pdf/util/SvgProcessingUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/main/java/com/itextpdf/html2pdf/util/TagProcessorMapping.java b/src/main/java/com/itextpdf/html2pdf/util/TagProcessorMapping.java index 7688ad503..ff3370c52 100644 --- a/src/main/java/com/itextpdf/html2pdf/util/TagProcessorMapping.java +++ b/src/main/java/com/itextpdf/html2pdf/util/TagProcessorMapping.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/sharpenconfig/java/com/itextpdf/html2pdf/SharpenConfigMapping.java b/src/sharpenconfig/java/com/itextpdf/html2pdf/SharpenConfigMapping.java index dae5b82ad..107bf7b22 100644 --- a/src/sharpenconfig/java/com/itextpdf/html2pdf/SharpenConfigMapping.java +++ b/src/sharpenconfig/java/com/itextpdf/html2pdf/SharpenConfigMapping.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -102,4 +102,4 @@ public List> getOverwrittenResources() { public void setConfigModuleSettings(ModulesConfigurator modulesConfigurator) { } -} \ No newline at end of file +} diff --git a/src/test/java/com/itextpdf/html2pdf/ConverterPropertiesTest.java b/src/test/java/com/itextpdf/html2pdf/ConverterPropertiesTest.java index 5e645d0cd..81e01eaaa 100644 --- a/src/test/java/com/itextpdf/html2pdf/ConverterPropertiesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/ConverterPropertiesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -24,8 +24,11 @@ This file is part of the iText (R) project. import com.itextpdf.commons.actions.NamespaceConstant; import com.itextpdf.commons.actions.contexts.IMetaInfo; +import com.itextpdf.html2pdf.attach.util.AlternateDescriptionResolver; import com.itextpdf.test.ExtendedITextTest; +import java.util.Map; +import java.util.function.Supplier; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Tag; @@ -71,6 +74,35 @@ public void checkDefaultsTest() { Assertions.assertEquals(20, propertiesCopied.getLimitOfLayouts()); } + @Test + public void converterPropsSetDependencyWithNullInstance() { + ConverterProperties converterProperties = new ConverterProperties(); + Assertions.assertThrows(IllegalArgumentException.class, () -> { + converterProperties.registerDependency(AlternateDescriptionResolver.class, null); + }); + } + + @Test + public void converterPropsSetDependencyWithNullType() { + ConverterProperties converterProperties = new ConverterProperties(); + Supplier dummySupplier = () -> new Object(); + Assertions.assertThrows(IllegalArgumentException.class, () -> { + converterProperties.registerDependency(null, dummySupplier); + }); + } + + @Test + public void getDependenciesTest() { + ConverterProperties converterProperties = new ConverterProperties(); + Object dummyObject = new Object(); + Supplier dummySupplier = () -> dummyObject; + converterProperties.registerDependency(AlternateDescriptionResolver.class, dummySupplier); + + Map, Object> dependencies = converterProperties.getDependencies(); + Assertions.assertEquals(1, dependencies.size()); + Assertions.assertSame(dummyObject, dependencies.get(AlternateDescriptionResolver.class)); + } + private static class TestMetaInfo implements IMetaInfo { } } diff --git a/src/test/java/com/itextpdf/html2pdf/ExtendedFontPropertiesTest.java b/src/test/java/com/itextpdf/html2pdf/ExtendedFontPropertiesTest.java index 5eba1bc77..9917f464a 100644 --- a/src/test/java/com/itextpdf/html2pdf/ExtendedFontPropertiesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/ExtendedFontPropertiesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/ExtendedHtmlConversionITextTest.java b/src/test/java/com/itextpdf/html2pdf/ExtendedHtmlConversionITextTest.java index 5f9d15116..05c0ccf5f 100644 --- a/src/test/java/com/itextpdf/html2pdf/ExtendedHtmlConversionITextTest.java +++ b/src/test/java/com/itextpdf/html2pdf/ExtendedHtmlConversionITextTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/FontProviderTest.java b/src/test/java/com/itextpdf/html2pdf/FontProviderTest.java index 45a2cc346..a0665ecb3 100644 --- a/src/test/java/com/itextpdf/html2pdf/FontProviderTest.java +++ b/src/test/java/com/itextpdf/html2pdf/FontProviderTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -43,6 +43,7 @@ This file is part of the iText (R) project. @Tag("IntegrationTest") public class FontProviderTest extends ExtendedITextTest { public static final String SOURCE_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/FontProviderTest/"; + public static final String FONT_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/fonts/"; public static final String DESTINATION_FOLDER = "./target/test/com/itextpdf/html2pdf/FontProviderTest/"; @BeforeAll @@ -99,36 +100,36 @@ public void comparatorErrorTest() throws IOException, InterruptedException { ConverterProperties properties = new ConverterProperties(); FontProvider pro = new BasicFontProvider(); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSansArabic-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSansArabic-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSansGurmukhi-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSansGurmukhi-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSansMyanmar-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSansMyanmar-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSansOriya-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSansOriya-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifBengali-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifBengali-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifDevanagari-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifDevanagari-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifGujarati-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifGujarati-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifHebrew-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifHebrew-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifKannada-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifKannada-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifKhmer-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifKhmer-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifMalayalam-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifMalayalam-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifMyanmar-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifMyanmar-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifTamil-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifTamil-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifTelugu-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifTelugu-Bold.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifThai-Regular.ttf")); - pro.addFont(FontProgramFactory.createFont(SOURCE_FOLDER + "NotoSerifThai-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSansArabic-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSansArabic-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSansGurmukhi-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSansGurmukhi-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSansMyanmar-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSansMyanmar-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSansOriya-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSansOriya-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifBengali-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifBengali-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifDevanagari-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifDevanagari-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifGujarati-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifGujarati-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifHebrew-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifHebrew-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifKannada-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifKannada-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifKhmer-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifKhmer-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifMalayalam-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifMalayalam-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifMyanmar-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifMyanmar-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifTamil-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifTamil-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifTelugu-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifTelugu-Bold.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifThai-Regular.ttf")); + pro.addFont(FontProgramFactory.createFont(FONT_FOLDER + "NotoSerifThai-Bold.ttf")); properties.setFontProvider(pro); @@ -151,7 +152,7 @@ public void comparatorErrorTest() throws IOException, InterruptedException { public void differentFontFamiliesTest() throws IOException, InterruptedException { ConverterProperties properties = new ConverterProperties(); FontProvider fontProvider = new BasicFontProvider(false, false, false); - fontProvider.addDirectory(SOURCE_FOLDER + "Lato_fonts"); + fontProvider.addDirectory(FONT_FOLDER); properties.setFontProvider(fontProvider); HtmlConverter.convertToPdf(new File(SOURCE_FOLDER + "differentFontFamilies.html"), new File( diff --git a/src/test/java/com/itextpdf/html2pdf/Html2ElementsTest.java b/src/test/java/com/itextpdf/html2pdf/Html2ElementsTest.java index 3a2fb4ab8..6fe9a3fbd 100644 --- a/src/test/java/com/itextpdf/html2pdf/Html2ElementsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/Html2ElementsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -44,6 +44,7 @@ This file is part of the iText (R) project. import com.itextpdf.kernel.utils.CompareTool; import com.itextpdf.layout.Document; import com.itextpdf.layout.element.AreaBreak; +import com.itextpdf.layout.element.Div; import com.itextpdf.layout.element.IAbstractElement; import com.itextpdf.layout.element.IBlockElement; import com.itextpdf.layout.element.IElement; @@ -54,6 +55,7 @@ This file is part of the iText (R) project. import com.itextpdf.layout.properties.Leading; import com.itextpdf.layout.properties.Property; import com.itextpdf.layout.properties.UnitValue; +import com.itextpdf.layout.renderer.MetaInfoContainer; import com.itextpdf.pdfa.PdfADocument; import com.itextpdf.styledxmlparser.logs.StyledXmlParserLogMessageConstant; import com.itextpdf.test.ExtendedITextTest; @@ -427,6 +429,12 @@ public void htmlToElementsToPDFATest() throws IOException, InterruptedException Assertions.assertNull(new CompareTool().compareByContent(outPdf, cmpPdf, destinationFolder)); } + @Test + public void unsetLetterSpacingTest() { + String unsetDoc = "
Test
"; + Div div = (Div) HtmlConverter.convertToElements(unsetDoc).get(0); + Assertions.assertNull(div.getProperty(Property.CHARACTER_SPACING)); + } private static void addElementsToDocument(Document document, List elements) { for (IElement elem : elements) { diff --git a/src/test/java/com/itextpdf/html2pdf/HtmlConverterMetaInfoTest.java b/src/test/java/com/itextpdf/html2pdf/HtmlConverterMetaInfoTest.java index cd3f8775b..7c8ac98bc 100644 --- a/src/test/java/com/itextpdf/html2pdf/HtmlConverterMetaInfoTest.java +++ b/src/test/java/com/itextpdf/html2pdf/HtmlConverterMetaInfoTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/HtmlConverterMultiThreadedTest.java b/src/test/java/com/itextpdf/html2pdf/HtmlConverterMultiThreadedTest.java index 657e09fa5..d61e16aca 100644 --- a/src/test/java/com/itextpdf/html2pdf/HtmlConverterMultiThreadedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/HtmlConverterMultiThreadedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfA3Test.java b/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfA3Test.java index fd5ba0d88..273d81251 100644 --- a/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfA3Test.java +++ b/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfA3Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfA4Test.java b/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfA4Test.java index ae7f0cd3b..db64695d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfA4Test.java +++ b/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfA4Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfAParameterizedTest.java b/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfAParameterizedTest.java index 656cdea8c..862fa3ab9 100644 --- a/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfAParameterizedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfAParameterizedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test.java b/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test.java index a7d38dd40..7563ba1b5 100644 --- a/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test.java +++ b/src/test/java/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/HtmlConverterTest.java b/src/test/java/com/itextpdf/html2pdf/HtmlConverterTest.java index bf01b7d1b..b643fd5cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/HtmlConverterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/HtmlConverterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/HtmlResourceResolverUnitTest.java b/src/test/java/com/itextpdf/html2pdf/HtmlResourceResolverUnitTest.java index 4ec43e23e..4023d5c4e 100644 --- a/src/test/java/com/itextpdf/html2pdf/HtmlResourceResolverUnitTest.java +++ b/src/test/java/com/itextpdf/html2pdf/HtmlResourceResolverUnitTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/ProcessorContextTest.java b/src/test/java/com/itextpdf/html2pdf/ProcessorContextTest.java index a35d187b2..2ecaa4f67 100644 --- a/src/test/java/com/itextpdf/html2pdf/ProcessorContextTest.java +++ b/src/test/java/com/itextpdf/html2pdf/ProcessorContextTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -89,7 +89,7 @@ public void overwriteDiContainerAlternateDescriptionResolve() { String html = "Hello"; ConverterProperties properties = new ConverterProperties(); final String exceptionMessage = "Test me"; - properties.getDependencies().put(AlternateDescriptionResolver.class, new AlternateDescriptionResolver() { + properties.registerDependency(AlternateDescriptionResolver.class, () -> new AlternateDescriptionResolver() { @Override protected void resolveFallback(IAccessibleElement accessibleElement, IElementNode element) { throw new RuntimeException(exceptionMessage); diff --git a/src/test/java/com/itextpdf/html2pdf/SurrogatePairsTest.java b/src/test/java/com/itextpdf/html2pdf/SurrogatePairsTest.java index f8c833685..8d6f3b3da 100644 --- a/src/test/java/com/itextpdf/html2pdf/SurrogatePairsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/SurrogatePairsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/actions/Html2PdfEventsHandlingTest.java b/src/test/java/com/itextpdf/html2pdf/actions/Html2PdfEventsHandlingTest.java index 89ae178a5..28535acc0 100644 --- a/src/test/java/com/itextpdf/html2pdf/actions/Html2PdfEventsHandlingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/actions/Html2PdfEventsHandlingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/actions/TestConfigurationEvent.java b/src/test/java/com/itextpdf/html2pdf/actions/TestConfigurationEvent.java index 022dcbfcc..9d3a023c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/actions/TestConfigurationEvent.java +++ b/src/test/java/com/itextpdf/html2pdf/actions/TestConfigurationEvent.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlProductEventTest.java b/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlProductEventTest.java index 63e063954..13c7b6bd3 100644 --- a/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlProductEventTest.java +++ b/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlProductEventTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlTestMetaInfo.java b/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlTestMetaInfo.java index 0b791577e..12fd58f0a 100644 --- a/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlTestMetaInfo.java +++ b/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlTestMetaInfo.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlTestProductEvent.java b/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlTestProductEvent.java index bb61e052f..d18daea61 100644 --- a/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlTestProductEvent.java +++ b/src/test/java/com/itextpdf/html2pdf/actions/events/PdfHtmlTestProductEvent.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactoryTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactoryTest.java index ec67630e9..3770adafc 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactoryTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/DefaultTagWorkerFactoryTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/HtmlMetaInfoContainerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/HtmlMetaInfoContainerTest.java index 85bed4729..0b4c3bef7 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/HtmlMetaInfoContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/HtmlMetaInfoContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/OutlineHandlerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/OutlineHandlerTest.java index 9e356b84e..c0df84026 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/OutlineHandlerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/OutlineHandlerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfPropertyTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfPropertyTest.java index e41d2d66e..fdf9d6ed1 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfPropertyTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/Html2PdfPropertyTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRendererIntegrationTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRendererIntegrationTest.java index 82833eedd..8436e30f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRendererIntegrationTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRendererIntegrationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRendererTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRendererTest.java index d62708121..2f6181749 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRendererTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/HtmlDocumentRendererTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRendererTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRendererTest.java index 7132ac0ac..a6d0d52fa 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRendererTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageCountRendererTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParserTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParserTest.java index 4fb8882ae..f1daa10cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParserTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageSizeParserTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElementTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElementTest.java index 49186d7af..b3d92a9ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElementTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountElementTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRendererTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRendererTest.java index 6032ce8bb..08a991992 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRendererTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/PageTargetCountRendererTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainerTest.java index 78a0fc5f1..5f13e0965 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/layout/WidthDimensionContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/ATagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/ATagWorkerTest.java index d931fc193..a631fb63d 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/ATagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/ATagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/AbbrTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/AbbrTagWorkerTest.java index c4b4d361f..db16a7fe2 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/AbbrTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/AbbrTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/BodyTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/BodyTagWorkerTest.java index f28959fea..f4ffd86b7 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/BodyTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/BodyTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/BrTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/BrTagWorkerTest.java index 33ff83530..9d4684678 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/BrTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/BrTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableRowTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableRowTagWorkerTest.java index 735c2b1e4..3ac482e48 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableRowTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableRowTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableTagWorkerTest.java index 7a28f29ae..f5e942a17 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DisplayTableTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DivTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DivTagWorkerTest.java index 98a58e030..88485597a 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DivTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/DivTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/InputTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/InputTagWorkerTest.java index 25724d28e..df58f8cff 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/InputTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/InputTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/LiTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/LiTagWorkerTest.java index d3dc647ec..6d438bd97 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/LiTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/LiTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PTagWorkerTest.java index 7e14fe7d8..88dc9d520 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PageCountWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PageCountWorkerTest.java index b923491bf..e24394e1e 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PageCountWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PageCountWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PreTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PreTagWorkerTest.java index 42e170759..b9e0f26f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PreTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/PreTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/SpanTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/SpanTagWorkerTest.java index 0d202fc84..ac54de7ec 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/SpanTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/SpanTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/SvgTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/SvgTagWorkerTest.java index b5aaf7c26..84d3c4a81 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/SvgTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/SvgTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/UlOlTagWorkerTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/UlOlTagWorkerTest.java index ecee50ec0..b58b71424 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/UlOlTagWorkerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/UlOlTagWorkerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/util/ATagUtilTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/util/ATagUtilTest.java index 9ceb52f04..292a99816 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/util/ATagUtilTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/tags/util/ATagUtilTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/impl/util/WhiteSpaceCollapsingAndTrimmingTest.java b/src/test/java/com/itextpdf/html2pdf/attach/impl/util/WhiteSpaceCollapsingAndTrimmingTest.java index d5d3a842d..fd386b7d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/impl/util/WhiteSpaceCollapsingAndTrimmingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/impl/util/WhiteSpaceCollapsingAndTrimmingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/util/LinkHelperTest.java b/src/test/java/com/itextpdf/html2pdf/attach/util/LinkHelperTest.java index 3bb1ff7f2..43be5ecda 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/util/LinkHelperTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/util/LinkHelperTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attach/util/WaitingInlineElementsHelperTest.java b/src/test/java/com/itextpdf/html2pdf/attach/util/WaitingInlineElementsHelperTest.java index f73aab662..5304e215c 100644 --- a/src/test/java/com/itextpdf/html2pdf/attach/util/WaitingInlineElementsHelperTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attach/util/WaitingInlineElementsHelperTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attribute/AlignAttributeTest.java b/src/test/java/com/itextpdf/html2pdf/attribute/AlignAttributeTest.java index bc1fa5086..5c2488fcd 100644 --- a/src/test/java/com/itextpdf/html2pdf/attribute/AlignAttributeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attribute/AlignAttributeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attribute/HeightTest.java b/src/test/java/com/itextpdf/html2pdf/attribute/HeightTest.java index 856b153a5..419be3777 100644 --- a/src/test/java/com/itextpdf/html2pdf/attribute/HeightTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attribute/HeightTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attribute/LangAttributeTest.java b/src/test/java/com/itextpdf/html2pdf/attribute/LangAttributeTest.java index 76b8be63b..79ba0d83c 100644 --- a/src/test/java/com/itextpdf/html2pdf/attribute/LangAttributeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attribute/LangAttributeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attribute/NowrapAttributeTest.java b/src/test/java/com/itextpdf/html2pdf/attribute/NowrapAttributeTest.java index 1fc18482c..9f621e22d 100644 --- a/src/test/java/com/itextpdf/html2pdf/attribute/NowrapAttributeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attribute/NowrapAttributeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attribute/StyleDirectionTest.java b/src/test/java/com/itextpdf/html2pdf/attribute/StyleDirectionTest.java index dfecfe645..0d51d59ec 100644 --- a/src/test/java/com/itextpdf/html2pdf/attribute/StyleDirectionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attribute/StyleDirectionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attribute/TextAlignTest.java b/src/test/java/com/itextpdf/html2pdf/attribute/TextAlignTest.java index d1530a660..9ad9bf202 100644 --- a/src/test/java/com/itextpdf/html2pdf/attribute/TextAlignTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attribute/TextAlignTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/attribute/WidthTest.java b/src/test/java/com/itextpdf/html2pdf/attribute/WidthTest.java index 1cf278b53..587604728 100644 --- a/src/test/java/com/itextpdf/html2pdf/attribute/WidthTest.java +++ b/src/test/java/com/itextpdf/html2pdf/attribute/WidthTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/AbsolutePositionTest.java b/src/test/java/com/itextpdf/html2pdf/css/AbsolutePositionTest.java index 83234503f..3eb95c2f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/AbsolutePositionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/AbsolutePositionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -145,4 +145,19 @@ public void absPosNoTopBottomTest01() throws IOException, InterruptedException { // TODO DEVSIX-1950 convertToPdfAndCompare("absPosNoTopBottomTest01", sourceFolder, destinationFolder); } + + @Test + public void absolutePositionSplitPagesBeforeTextTest() throws IOException, InterruptedException { + convertToPdfAndCompare("absolutePositionSplitPagesBeforeText", sourceFolder, destinationFolder); + } + + @Test + public void absolutePositionSplitPagesAfterTextTest() throws IOException, InterruptedException { + convertToPdfAndCompare("absolutePositionSplitPagesAfterText", sourceFolder, destinationFolder); + } + + @Test + public void absolutePositionSplitPagesAfterTextInImageBlockTest() throws IOException, InterruptedException { + convertToPdfAndCompare("absolutePositionSplitPagesAfterTextInImageBlock", sourceFolder, destinationFolder); + } } diff --git a/src/test/java/com/itextpdf/html2pdf/css/AreaBreakTest.java b/src/test/java/com/itextpdf/html2pdf/css/AreaBreakTest.java index 6e8f0f8e1..3ed68f61f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/AreaBreakTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/AreaBreakTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BackgroundBlendModeTest.java b/src/test/java/com/itextpdf/html2pdf/css/BackgroundBlendModeTest.java index 992e4ae04..968890a35 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BackgroundBlendModeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BackgroundBlendModeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BackgroundClipTest.java b/src/test/java/com/itextpdf/html2pdf/css/BackgroundClipTest.java index f279b456e..9a38966cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BackgroundClipTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BackgroundClipTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BackgroundColorWithFormattingElementsTest.java b/src/test/java/com/itextpdf/html2pdf/css/BackgroundColorWithFormattingElementsTest.java index e1f9380ab..e268bae85 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BackgroundColorWithFormattingElementsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BackgroundColorWithFormattingElementsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BackgroundOriginTest.java b/src/test/java/com/itextpdf/html2pdf/css/BackgroundOriginTest.java index 66189875e..cf34b23d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BackgroundOriginTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BackgroundOriginTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BackgroundRepeatTest.java b/src/test/java/com/itextpdf/html2pdf/css/BackgroundRepeatTest.java index 09f1f4ea0..ea22ed1bb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BackgroundRepeatTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BackgroundRepeatTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BackgroundSvgImageTest.java b/src/test/java/com/itextpdf/html2pdf/css/BackgroundSvgImageTest.java index 8dd9517a4..1193146f9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BackgroundSvgImageTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BackgroundSvgImageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BackgroundTest.java b/src/test/java/com/itextpdf/html2pdf/css/BackgroundTest.java index 18bdb05b0..1c90fd335 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BackgroundTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BackgroundTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BlockFormattingContextTest.java b/src/test/java/com/itextpdf/html2pdf/css/BlockFormattingContextTest.java index 18da76342..e6203c55a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BlockFormattingContextTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BlockFormattingContextTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BodyBackgroundTest.java b/src/test/java/com/itextpdf/html2pdf/css/BodyBackgroundTest.java index 56fdb1526..4bbef712a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BodyBackgroundTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BodyBackgroundTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BorderRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/BorderRadiusTest.java index e1b32e58a..d50f71ca9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BorderRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BorderRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BorderTest.java b/src/test/java/com/itextpdf/html2pdf/css/BorderTest.java index d27c508f3..8ce83f0eb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BorderTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BorderTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BoxSizingTest.java b/src/test/java/com/itextpdf/html2pdf/css/BoxSizingTest.java index 56c972639..ab5a5a7a7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BoxSizingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BoxSizingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BrTagArtifactTest.java b/src/test/java/com/itextpdf/html2pdf/css/BrTagArtifactTest.java index 38aaa7be2..80f757648 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BrTagArtifactTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BrTagArtifactTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/BrTagTest.java b/src/test/java/com/itextpdf/html2pdf/css/BrTagTest.java index 6ac9e223f..b4d8d89a6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/BrTagTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/BrTagTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/ClearTest.java b/src/test/java/com/itextpdf/html2pdf/css/ClearTest.java index a6b80f08a..39e620dcc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/ClearTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/ClearTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/ClipPathTest.java b/src/test/java/com/itextpdf/html2pdf/css/ClipPathTest.java index 46177b6a8..e935e6059 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/ClipPathTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/ClipPathTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/ContinuousContainerTest.java b/src/test/java/com/itextpdf/html2pdf/css/ContinuousContainerTest.java index 7bfb75a5a..47632cd24 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/ContinuousContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/ContinuousContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CounterTest.java b/src/test/java/com/itextpdf/html2pdf/css/CounterTest.java index d8b4770d8..274d33b3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CounterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CounterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssCaseSensitivityTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssCaseSensitivityTest.java index d27bb1ca2..2152b09ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssCaseSensitivityTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssCaseSensitivityTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssCollapsingMarginsTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssCollapsingMarginsTest.java index 1ba293627..5de6e1ac6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssCollapsingMarginsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssCollapsingMarginsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssEmptySelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssEmptySelectorTest.java index 1b07cee16..f6bc9d0f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssEmptySelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssEmptySelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssEscapedSelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssEscapedSelectorTest.java index 09ad58b16..85fe8ca50 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssEscapedSelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssEscapedSelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssFormsTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssFormsTest.java index 79fad08f0..4a26d2440 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssFormsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssFormsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssInheritanceTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssInheritanceTest.java index 17e79eb05..e7e8e7509 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssInheritanceTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssInheritanceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -80,4 +80,9 @@ public void cssInheritanceTest06() throws IOException, InterruptedException { public void cssFontFamilyInheritanceTest01() throws IOException, InterruptedException { convertToPdfAndCompare("cssFontFamilyInheritanceTest01", sourceFolder, destinationFolder); } + + @Test + public void unsetPropertyInheritanceTest() throws IOException, InterruptedException { + convertToPdfAndCompare("unsetCssInheritance", sourceFolder, destinationFolder); + } } diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssNthChildSelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssNthChildSelectorTest.java index 0210823fc..47274024a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssNthChildSelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssNthChildSelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssNthOfTypeSelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssNthOfTypeSelectorTest.java index 941bfacdf..f8afaaa5a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssNthOfTypeSelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssNthOfTypeSelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssOpacityTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssOpacityTest.java index 38bc17145..aa5afcf42 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssOpacityTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssOpacityTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssOutlineTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssOutlineTest.java index 67edbe6f1..048cb8ef5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssOutlineTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssOutlineTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssRemUnitValueTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssRemUnitValueTest.java index 4b2ad6e86..7309474b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssRemUnitValueTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssRemUnitValueTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssRootSelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssRootSelectorTest.java index a109cc209..a5dfb83d4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssRootSelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssRootSelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssStyleSheetParserTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssStyleSheetParserTest.java index f9551e989..5d490bc1d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssStyleSheetParserTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssStyleSheetParserTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssStylesResolvingTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssStylesResolvingTest.java index 00393c4cf..cb4764772 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssStylesResolvingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssStylesResolvingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/CssTransformTest.java b/src/test/java/com/itextpdf/html2pdf/css/CssTransformTest.java index 0932a4120..6d7894c80 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/CssTransformTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/CssTransformTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/DeviceCmykTest.java b/src/test/java/com/itextpdf/html2pdf/css/DeviceCmykTest.java index b2d3c93a5..b846e0550 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/DeviceCmykTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/DeviceCmykTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/DirectionTest.java b/src/test/java/com/itextpdf/html2pdf/css/DirectionTest.java index 56793671b..7b79d9969 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/DirectionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/DirectionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/DisplayTest.java b/src/test/java/com/itextpdf/html2pdf/css/DisplayTest.java index c0ee9da6f..75aba755d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/DisplayTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/DisplayTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FloatAndAlignmentTest.java b/src/test/java/com/itextpdf/html2pdf/css/FloatAndAlignmentTest.java index 41229d5ca..6c2f73a5b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FloatAndAlignmentTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FloatAndAlignmentTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FloatTest.java b/src/test/java/com/itextpdf/html2pdf/css/FloatTest.java index 021d90ac7..c8a870214 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FloatTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FloatTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontFaceTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontFaceTest.java index f16d7be48..457c77fb6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontFaceTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontFaceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -68,33 +68,33 @@ public void emptyFontDefinitionTest() throws IOException, InterruptedException { @Test - public void droidSerifWebFontTest() throws IOException, InterruptedException { - runTest("droidSerifWebFontTest"); + public void robotoSerifWebFontTest() throws IOException, InterruptedException { + runTest("robotoSerifWebFontTest"); } @Test - public void droidSerifLocalFontTest() throws IOException, InterruptedException { - runTest("droidSerifLocalFontTest"); + public void robotoSerifLocalFontTest() throws IOException, InterruptedException { + runTest("robotoSerifLocalFontTest"); } @Test - public void droidSerifLocalLocalFontTest() throws IOException, InterruptedException { - runTest("droidSerifLocalLocalFontTest"); + public void robotoSerifLocalLocalFontTest() throws IOException, InterruptedException { + runTest("robotoSerifLocalLocalFontTest"); } @Test - public void droidSerifLocalWithMediaFontTest() throws IOException, InterruptedException { - runTest("droidSerifLocalWithMediaFontTest"); + public void robotoSerifLocalWithMediaFontTest() throws IOException, InterruptedException { + runTest("robotoSerifLocalWithMediaFontTest"); } @Test - public void droidSerifLocalWithMediaRuleFontTest() throws IOException, InterruptedException { - runTest("droidSerifLocalWithMediaRuleFontTest"); + public void robotoSerifLocalWithMediaRuleFontTest() throws IOException, InterruptedException { + runTest("robotoSerifLocalWithMediaRuleFontTest"); } @Test - public void droidSerifLocalWithMediaRuleFontTest2() throws IOException, InterruptedException { - runTest("droidSerifLocalWithMediaRuleFontTest2"); + public void robotoSerifLocalWithMediaRuleFontTest2() throws IOException, InterruptedException { + runTest("robotoSerifLocalWithMediaRuleFontTest2"); } @Test diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontFamilyFallbackTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontFamilyFallbackTest.java index 35675b564..d9747a0b3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontFamilyFallbackTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontFamilyFallbackTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontFamilyTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontFamilyTest.java index 9947f2fc4..0232adfda 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontFamilyTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontFamilyTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontPropertyTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontPropertyTest.java index b97dec771..e9a289463 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontPropertyTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontPropertyTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontRangeTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontRangeTest.java index 51a97c489..7d38bac18 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontRangeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontRangeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontSelectorArialFontTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontSelectorArialFontTest.java index 2d889af27..07b53a032 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontSelectorArialFontTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontSelectorArialFontTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -41,15 +41,16 @@ This file is part of the iText (R) project. @Tag("IntegrationTest") public class FontSelectorArialFontTest extends ExtendedITextTest { - public static final String sourceFolder = "./src/test/resources/com/itextpdf/html2pdf/css/FontSelectorArialFontTest/"; - public static final String destinationFolder = "./target/test/com/itextpdf/html2pdf/css/FontSelectorArialFontTest/"; + private static final String SOURCE_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/css/FontSelectorArialFontTest/"; + private static final String FONT_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/fonts/"; + private static final String DESTINATION_FOLDER = "./target/test/com/itextpdf/html2pdf/css/FontSelectorArialFontTest/"; public static final String SOURCE_HTML_NAME = "arialTest"; @BeforeAll public static void beforeClass() { - createDestinationFolder(destinationFolder); - createDestinationFolder(sourceFolder); + createDestinationFolder(DESTINATION_FOLDER); + createDestinationFolder(SOURCE_FOLDER); } @Test @@ -65,7 +66,7 @@ public void testArial() throws IOException, InterruptedException { public void testArialWithHelveticaAsAnAlias() throws IOException, InterruptedException { String fileName = "testArialWithHelveticaAsAnAlias"; FontProvider fontProvider = new BasicFontProvider(); - fontProvider.getFontSet().addFont(sourceFolder + "FreeSans.ttf", null, "Arial"); + fontProvider.getFontSet().addFont(FONT_FOLDER + "FreeSans.ttf", null, "Arial"); ConverterProperties converterProperties = new ConverterProperties() .setMediaDeviceDescription(new MediaDeviceDescription(MediaType.PRINT)) .setFontProvider(fontProvider); @@ -73,11 +74,11 @@ public void testArialWithHelveticaAsAnAlias() throws IOException, InterruptedExc } private void runTest(String name, ConverterProperties converterProperties) throws IOException, InterruptedException { - String htmlPath = sourceFolder + SOURCE_HTML_NAME + ".html"; - String pdfPath = destinationFolder + name + ".pdf"; - String cmpPdfPath = sourceFolder + "cmp_" + name + ".pdf"; + String htmlPath = SOURCE_FOLDER + SOURCE_HTML_NAME + ".html"; + String pdfPath = DESTINATION_FOLDER + name + ".pdf"; + String cmpPdfPath = SOURCE_FOLDER + "cmp_" + name + ".pdf"; String diffPrefix = "diff_" + name + "_"; HtmlConverter.convertToPdf(new File(htmlPath), new File(pdfPath), converterProperties); - Assertions.assertNull(new CompareTool().compareByContent(pdfPath, cmpPdfPath, destinationFolder, diffPrefix)); + Assertions.assertNull(new CompareTool().compareByContent(pdfPath, cmpPdfPath, DESTINATION_FOLDER, diffPrefix)); } } diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontSelectorGenericFamiliesTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontSelectorGenericFamiliesTest.java index 3c3eb95fd..659925dfb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontSelectorGenericFamiliesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontSelectorGenericFamiliesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontSelectorTimesFontTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontSelectorTimesFontTest.java index 81739935b..e357fa104 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontSelectorTimesFontTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontSelectorTimesFontTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontSizeTest.java index d0679801d..7c4eb4cac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/FontStyleParameterizedTest.java b/src/test/java/com/itextpdf/html2pdf/css/FontStyleParameterizedTest.java index 0e73f101b..411c6a3f0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/FontStyleParameterizedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/FontStyleParameterizedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/HasPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/HasPseudoClassTest.java new file mode 100644 index 000000000..3a84c1db4 --- /dev/null +++ b/src/test/java/com/itextpdf/html2pdf/css/HasPseudoClassTest.java @@ -0,0 +1,109 @@ +/* + This file is part of the iText (R) project. + Copyright (c) 1998-2026 Apryse Group NV + Authors: Apryse Software. + + This program is offered under a commercial and under the AGPL license. + For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. + + AGPL licensing: + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + */ +package com.itextpdf.html2pdf.css; + +import com.itextpdf.html2pdf.ExtendedHtmlConversionITextTest; +import com.itextpdf.styledxmlparser.logs.StyledXmlParserLogMessageConstant; +import com.itextpdf.test.annotations.LogMessage; +import com.itextpdf.test.annotations.LogMessages; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Tag; +import org.junit.jupiter.api.Test; + +import java.io.IOException; + +@Tag("IntegrationTest") +public class HasPseudoClassTest extends ExtendedHtmlConversionITextTest { + public static final String DESTINATION_FOLDER = "./target/test/com/itextpdf/html2pdf/css/HasPseudoClassTest/"; + public static final String SOURCE_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/"; + + @BeforeAll + public static void beforeClass() { + createOrClearDestinationFolder(DESTINATION_FOLDER); + } + + @Test + public void hasBasicSelectionTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasBasicSelectionTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @Test + public void hasChildSelectorTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasChildSelectorTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @Test + public void hasAdjacentSiblingSelectorTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasAdjacentSiblingSelectorTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @Test + public void hasGeneralSiblingSelectorTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasGeneralSiblingSelectorTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @Test + public void hasNegationTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasNegationTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + //Nesting 'has' is not allowed in CSS + @LogMessages(messages = @LogMessage(messageTemplate = StyledXmlParserLogMessageConstant.ERROR_PARSING_CSS_SELECTOR, count = 3)) + @Test + public void hasNestedHasTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasNestedHasTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @Test + public void hasWithPseudoElementsInteractionTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasWithPseudoElementsInteractionTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @Test + public void hasWithDisplayVisibilityTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasWithDisplayVisibilityTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @Test + public void hasWithBoxModelTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasWithBoxModelTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @Test + public void hasWithPositioningTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasWithPositioningTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + //TODO DEVSIX-4258: table body styling is not supported + @Test + public void hasWithTableStructuresTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasWithTableStructuresTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + @LogMessages(messages = @LogMessage(messageTemplate = StyledXmlParserLogMessageConstant.ERROR_PARSING_CSS_SELECTOR, count = 2)) + //TODO DEVSIX-1440: support :invalid and :checked pseudo-classes + @Test + public void hasWithFormControlsTest() throws IOException, InterruptedException { + convertToPdfAndCompare("hasWithFormControlsTest", SOURCE_FOLDER, DESTINATION_FOLDER); + } +} diff --git a/src/test/java/com/itextpdf/html2pdf/css/HeightTest.java b/src/test/java/com/itextpdf/html2pdf/css/HeightTest.java index 6b63a7b6a..b6fd27c36 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/HeightTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/HeightTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/HorizontalAlignmentTest.java b/src/test/java/com/itextpdf/html2pdf/css/HorizontalAlignmentTest.java index 0232ea166..78d5ae6eb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/HorizontalAlignmentTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/HorizontalAlignmentTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/HtmlCommentedTest.java b/src/test/java/com/itextpdf/html2pdf/css/HtmlCommentedTest.java index e55d5cb20..e48c450e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/HtmlCommentedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/HtmlCommentedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/HyphenateTest.java b/src/test/java/com/itextpdf/html2pdf/css/HyphenateTest.java index c0caa8ef3..ef0e7037e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/HyphenateTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/HyphenateTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/ImagesDpiTest.java b/src/test/java/com/itextpdf/html2pdf/css/ImagesDpiTest.java index 225c243d0..6dfd76c3a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/ImagesDpiTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/ImagesDpiTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/JapaneseLineBreakingRulesTest.java b/src/test/java/com/itextpdf/html2pdf/css/JapaneseLineBreakingRulesTest.java index 787fae135..7c02666f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/JapaneseLineBreakingRulesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/JapaneseLineBreakingRulesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/LabelTest.java b/src/test/java/com/itextpdf/html2pdf/css/LabelTest.java index 475c1d00b..996e2e7cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/LabelTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/LabelTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/LineHeightTest.java b/src/test/java/com/itextpdf/html2pdf/css/LineHeightTest.java index a0edc0e47..832b52c0e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/LineHeightTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/LineHeightTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/LinearGradientTest.java b/src/test/java/com/itextpdf/html2pdf/css/LinearGradientTest.java index f4b926445..ce9556810 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/LinearGradientTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/LinearGradientTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/ListCssTest.java b/src/test/java/com/itextpdf/html2pdf/css/ListCssTest.java index 9e4fe3d62..7dd517608 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/ListCssTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/ListCssTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/ListStyleImageLinearGradientTest.java b/src/test/java/com/itextpdf/html2pdf/css/ListStyleImageLinearGradientTest.java index 05b0cb76f..97c76e659 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/ListStyleImageLinearGradientTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/ListStyleImageLinearGradientTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/MarginTest.java b/src/test/java/com/itextpdf/html2pdf/css/MarginTest.java index b30c46af7..663b07516 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/MarginTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/MarginTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/ObjectFitTest.java b/src/test/java/com/itextpdf/html2pdf/css/ObjectFitTest.java index 5ae1a83f7..df5bb9d0b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/ObjectFitTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/ObjectFitTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/OpacityTest.java b/src/test/java/com/itextpdf/html2pdf/css/OpacityTest.java index 2ac79de8d..8cbe384e9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/OpacityTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/OpacityTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/OrphansTest.java b/src/test/java/com/itextpdf/html2pdf/css/OrphansTest.java index ff7fb9476..c565fd813 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/OrphansTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/OrphansTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/OrphansWidowsUnitTest.java b/src/test/java/com/itextpdf/html2pdf/css/OrphansWidowsUnitTest.java index 51d6aad58..3778172cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/OrphansWidowsUnitTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/OrphansWidowsUnitTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/OverflowTest.java b/src/test/java/com/itextpdf/html2pdf/css/OverflowTest.java index 08bbcac97..dbd4de650 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/OverflowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/OverflowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/OverflowWrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/OverflowWrapTest.java index c351c7a5e..f7fdfc2c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/OverflowWrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/OverflowWrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/PaddingTest.java b/src/test/java/com/itextpdf/html2pdf/css/PaddingTest.java index 67e30b8f4..55e896a80 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/PaddingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/PaddingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/PageBreakTest.java b/src/test/java/com/itextpdf/html2pdf/css/PageBreakTest.java index 9d5d75a8a..b154c3f2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/PageBreakTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/PageBreakTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/PageRuleTest.java b/src/test/java/com/itextpdf/html2pdf/css/PageRuleTest.java index 1b8f47500..332c35f40 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/PageRuleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/PageRuleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/PropertyValidationTest.java b/src/test/java/com/itextpdf/html2pdf/css/PropertyValidationTest.java index afbc9a0e6..54a866827 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/PropertyValidationTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/PropertyValidationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/PseudoElementsTest.java b/src/test/java/com/itextpdf/html2pdf/css/PseudoElementsTest.java index 7a9eedb10..86fdccab8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/PseudoElementsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/PseudoElementsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/QuotesTest.java b/src/test/java/com/itextpdf/html2pdf/css/QuotesTest.java index cf6538766..0c648047a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/QuotesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/QuotesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/RelativeCssPathTest.java b/src/test/java/com/itextpdf/html2pdf/css/RelativeCssPathTest.java index 939cb7493..0e660b80a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/RelativeCssPathTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/RelativeCssPathTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/TargetCounterTest.java b/src/test/java/com/itextpdf/html2pdf/css/TargetCounterTest.java index 5f44f723a..df8dec6dc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/TargetCounterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/TargetCounterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/TextDecorationTest.java b/src/test/java/com/itextpdf/html2pdf/css/TextDecorationTest.java index f9ac5b8e2..08207159d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/TextDecorationTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/TextDecorationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/TextPropertiesTest.java b/src/test/java/com/itextpdf/html2pdf/css/TextPropertiesTest.java index 497c2a277..d5869d6d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/TextPropertiesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/TextPropertiesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/VerticalAlignmentInlineBlockTest.java b/src/test/java/com/itextpdf/html2pdf/css/VerticalAlignmentInlineBlockTest.java index cb7813bb5..e0bdbc500 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/VerticalAlignmentInlineBlockTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/VerticalAlignmentInlineBlockTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/VerticalAlignmentTest.java b/src/test/java/com/itextpdf/html2pdf/css/VerticalAlignmentTest.java index f04a8fe7e..18bc04afd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/VerticalAlignmentTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/VerticalAlignmentTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/VisibilityTest.java b/src/test/java/com/itextpdf/html2pdf/css/VisibilityTest.java index 88db0d42c..c52dd4ebe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/VisibilityTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/VisibilityTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/WidowsTest.java b/src/test/java/com/itextpdf/html2pdf/css/WidowsTest.java index 89959daff..68c8f7245 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/WidowsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/WidowsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/WidthTest.java b/src/test/java/com/itextpdf/html2pdf/css/WidthTest.java index b6a38d1df..c32e06e45 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/WidthTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/WidthTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/WordBreakTest.java b/src/test/java/com/itextpdf/html2pdf/css/WordBreakTest.java index 2b994a8cf..bd17fd050 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/WordBreakTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/WordBreakTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -42,88 +42,88 @@ This file is part of the iText (R) project. @Tag("IntegrationTest") public class WordBreakTest extends ExtendedITextTest { - public static final String sourceFolder = "./src/test/resources/com/itextpdf/html2pdf/css/WordBreakTest/"; - public static final String destinationFolder = "./target/test/com/itextpdf/html2pdf/css/WordBreakTest/"; - public static final String fontsFolder = "./src/test/resources/com/itextpdf/html2pdf/css/CJKFonts/"; + private static final String SOURCE_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/css/WordBreakTest/"; + private static final String DESTINATION_FOLDER = "./target/test/com/itextpdf/html2pdf/css/WordBreakTest/"; + private static final String FONTS_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/fonts/"; @BeforeAll public static void beforeClass() { - createDestinationFolder(destinationFolder); + createDestinationFolder(DESTINATION_FOLDER); } @Test public void wordBreakCommonScenarioTest() throws IOException, InterruptedException { FontProvider fontProvider = new BasicFontProvider(); - fontProvider.addFont(fontsFolder + "NotoSansCJKjp-Regular.otf"); + fontProvider.addFont(FONTS_FOLDER + "NotoSansCJKjp-Regular.otf"); ConverterProperties converterProperties = new ConverterProperties(); converterProperties.setFontProvider(fontProvider); - HtmlConverter.convertToPdf(new File(sourceFolder + "wordBreakCommonScenario.html"), - new File(destinationFolder + "wordBreakCommonScenario.pdf"), converterProperties); - Assertions.assertNull(new CompareTool().compareByContent(destinationFolder + "wordBreakCommonScenario.pdf", - sourceFolder + "cmp_wordBreakCommonScenario.pdf", destinationFolder)); + HtmlConverter.convertToPdf(new File(SOURCE_FOLDER + "wordBreakCommonScenario.html"), + new File(DESTINATION_FOLDER + "wordBreakCommonScenario.pdf"), converterProperties); + Assertions.assertNull(new CompareTool().compareByContent(DESTINATION_FOLDER + "wordBreakCommonScenario.pdf", + SOURCE_FOLDER + "cmp_wordBreakCommonScenario.pdf", DESTINATION_FOLDER)); } @Test public void overflowXWordBreakTest() throws IOException, InterruptedException { FontProvider fontProvider = new BasicFontProvider(); - fontProvider.addFont(fontsFolder + "NotoSansCJKjp-Regular.otf"); + fontProvider.addFont(FONTS_FOLDER + "NotoSansCJKjp-Regular.otf"); ConverterProperties converterProperties = new ConverterProperties(); converterProperties.setFontProvider(fontProvider); - HtmlConverter.convertToPdf(new File(sourceFolder + "overflowXWordBreak.html"), - new File(destinationFolder + "overflowXWordBreak.pdf"), converterProperties); - Assertions.assertNull(new CompareTool().compareByContent(destinationFolder + "overflowXWordBreak.pdf", - sourceFolder + "cmp_overflowXWordBreak.pdf", destinationFolder)); + HtmlConverter.convertToPdf(new File(SOURCE_FOLDER + "overflowXWordBreak.html"), + new File(DESTINATION_FOLDER + "overflowXWordBreak.pdf"), converterProperties); + Assertions.assertNull(new CompareTool().compareByContent(DESTINATION_FOLDER + "overflowXWordBreak.pdf", + SOURCE_FOLDER + "cmp_overflowXWordBreak.pdf", DESTINATION_FOLDER)); } @Test public void whiteSpaceAndWordBreakTest() throws IOException, InterruptedException { - HtmlConverter.convertToPdf(new File(sourceFolder + "whiteSpaceAndWordBreak.html"), - new File(destinationFolder + "whiteSpaceAndWordBreak.pdf")); - Assertions.assertNull(new CompareTool().compareByContent(destinationFolder + "whiteSpaceAndWordBreak.pdf", - sourceFolder + "cmp_whiteSpaceAndWordBreak.pdf", destinationFolder)); + HtmlConverter.convertToPdf(new File(SOURCE_FOLDER + "whiteSpaceAndWordBreak.html"), + new File(DESTINATION_FOLDER + "whiteSpaceAndWordBreak.pdf")); + Assertions.assertNull(new CompareTool().compareByContent(DESTINATION_FOLDER + "whiteSpaceAndWordBreak.pdf", + SOURCE_FOLDER + "cmp_whiteSpaceAndWordBreak.pdf", DESTINATION_FOLDER)); } @Test public void wordBreakMidNumbersTest() throws IOException, InterruptedException { FontProvider fontProvider = new BasicFontProvider(); - fontProvider.addFont(fontsFolder + "NotoSansCJKjp-Regular.otf"); + fontProvider.addFont(FONTS_FOLDER + "NotoSansCJKjp-Regular.otf"); ConverterProperties converterProperties = new ConverterProperties(); converterProperties.setFontProvider(fontProvider); - HtmlConverter.convertToPdf(new File(sourceFolder + "wordBreakMidNumbers.html"), - new File(destinationFolder + "wordBreakMidNumbers.pdf"), converterProperties); - Assertions.assertNull(new CompareTool().compareByContent(destinationFolder + "wordBreakMidNumbers.pdf", - sourceFolder + "cmp_wordBreakMidNumbers.pdf", destinationFolder)); + HtmlConverter.convertToPdf(new File(SOURCE_FOLDER + "wordBreakMidNumbers.html"), + new File(DESTINATION_FOLDER + "wordBreakMidNumbers.pdf"), converterProperties); + Assertions.assertNull(new CompareTool().compareByContent(DESTINATION_FOLDER + "wordBreakMidNumbers.pdf", + SOURCE_FOLDER + "cmp_wordBreakMidNumbers.pdf", DESTINATION_FOLDER)); } @Test public void wordBreakMidPunctuationTest() throws IOException, InterruptedException { - HtmlConverter.convertToPdf(new File(sourceFolder + "wordBreakMidPunctuation.html"), - new File(destinationFolder + "wordBreakMidPunctuation.pdf")); - Assertions.assertNull(new CompareTool().compareByContent(destinationFolder + "wordBreakMidPunctuation.pdf", - sourceFolder + "cmp_wordBreakMidPunctuation.pdf", destinationFolder)); + HtmlConverter.convertToPdf(new File(SOURCE_FOLDER + "wordBreakMidPunctuation.html"), + new File(DESTINATION_FOLDER + "wordBreakMidPunctuation.pdf")); + Assertions.assertNull(new CompareTool().compareByContent(DESTINATION_FOLDER + "wordBreakMidPunctuation.pdf", + SOURCE_FOLDER + "cmp_wordBreakMidPunctuation.pdf", DESTINATION_FOLDER)); } @Test public void wordBreakAllAndFloatTest() throws IOException, InterruptedException { - HtmlConverter.convertToPdf(new File(sourceFolder + "wordBreakAllAndFloat.html"), - new File(destinationFolder + "wordBreakAllAndFloat.pdf")); - Assertions.assertNull(new CompareTool().compareByContent(destinationFolder + "wordBreakAllAndFloat.pdf", - sourceFolder + "cmp_wordBreakAllAndFloat.pdf", destinationFolder)); + HtmlConverter.convertToPdf(new File(SOURCE_FOLDER + "wordBreakAllAndFloat.html"), + new File(DESTINATION_FOLDER + "wordBreakAllAndFloat.pdf")); + Assertions.assertNull(new CompareTool().compareByContent(DESTINATION_FOLDER + "wordBreakAllAndFloat.pdf", + SOURCE_FOLDER + "cmp_wordBreakAllAndFloat.pdf", DESTINATION_FOLDER)); } @Test @LogMessages(messages = {@LogMessage(messageTemplate = IoLogMessageConstant .TABLE_WIDTH_IS_MORE_THAN_EXPECTED_DUE_TO_MIN_WIDTH, count = 3)}) public void wordBreakTableScenarioTest() throws IOException, InterruptedException { - HtmlConverter.convertToPdf(new File(sourceFolder + "wordBreakTableScenario.html"), - new File(destinationFolder + "wordBreakTableScenario.pdf")); - Assertions.assertNull(new CompareTool().compareByContent(destinationFolder + "wordBreakTableScenario.pdf", - sourceFolder + "cmp_wordBreakTableScenario.pdf", destinationFolder)); + HtmlConverter.convertToPdf(new File(SOURCE_FOLDER + "wordBreakTableScenario.html"), + new File(DESTINATION_FOLDER + "wordBreakTableScenario.pdf")); + Assertions.assertNull(new CompareTool().compareByContent(DESTINATION_FOLDER + "wordBreakTableScenario.pdf", + SOURCE_FOLDER + "cmp_wordBreakTableScenario.pdf", DESTINATION_FOLDER)); } } diff --git a/src/test/java/com/itextpdf/html2pdf/css/apply/impl/DefaultCssApplierFactoryTest.java b/src/test/java/com/itextpdf/html2pdf/css/apply/impl/DefaultCssApplierFactoryTest.java index ad2e58894..c7d334b19 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/apply/impl/DefaultCssApplierFactoryTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/apply/impl/DefaultCssApplierFactoryTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/apply/util/BackgroundApplierUtilTest.java b/src/test/java/com/itextpdf/html2pdf/css/apply/util/BackgroundApplierUtilTest.java index 6249e4953..e25fc1802 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/apply/util/BackgroundApplierUtilTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/apply/util/BackgroundApplierUtilTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/apply/util/FlexApplierUtilTest.java b/src/test/java/com/itextpdf/html2pdf/css/apply/util/FlexApplierUtilTest.java index 17fc168a6..301598ffa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/apply/util/FlexApplierUtilTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/apply/util/FlexApplierUtilTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/apply/util/GridApplierUtilTest.java b/src/test/java/com/itextpdf/html2pdf/css/apply/util/GridApplierUtilTest.java index d05f0e0a6..193b5d45f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/apply/util/GridApplierUtilTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/apply/util/GridApplierUtilTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/apply/util/OutlineApplierUtilTest.java b/src/test/java/com/itextpdf/html2pdf/css/apply/util/OutlineApplierUtilTest.java index 018814214..67a7c0e15 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/apply/util/OutlineApplierUtilTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/apply/util/OutlineApplierUtilTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/apply/util/TextDecorationApplierUtilTest.java b/src/test/java/com/itextpdf/html2pdf/css/apply/util/TextDecorationApplierUtilTest.java index 641cd9134..d2b317367 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/apply/util/TextDecorationApplierUtilTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/apply/util/TextDecorationApplierUtilTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/DisplayFlexTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/DisplayFlexTest.java index f641a28aa..66527c25f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/DisplayFlexTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/DisplayFlexTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexAlgoTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexAlgoTest.java index 0a482be6e..f3329a5e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexAlgoTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexAlgoTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexAlignSelfTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexAlignSelfTest.java index d519bf88b..2e8d42d06 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexAlignSelfTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexAlignSelfTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexBaseSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexBaseSizeTest.java index a4428106a..f5693f0e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexBaseSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexBaseSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexColumnReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexColumnReverseTest.java index 0b09808f0..b4dd9ac84 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexColumnReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexColumnReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexColumnTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexColumnTest.java index 7a8098777..74e01a80e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexColumnTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexColumnTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexContainerTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexContainerTest.java index 03c88877e..3153208f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexGapTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexGapTest.java index 31227a699..267cf235b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexGapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexGapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexIntrinsicAspectRatioTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexIntrinsicAspectRatioTest.java index 8ee082f92..b397c2cc2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexIntrinsicAspectRatioTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexIntrinsicAspectRatioTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexJustifyContentTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexJustifyContentTest.java index 0fb7d41d5..882c675cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexJustifyContentTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexJustifyContentTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexOrderTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexOrderTest.java index 752bb9709..7a7a34a87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexOrderTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexOrderTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexRowReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexRowReverseTest.java index c6e2b0ebd..2b05b1fd1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexRowReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexRowReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexRowTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexRowTest.java index e73f5be6a..c451a4ff3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FlexRowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FlexRowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/FloatAndFlexTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/FloatAndFlexTest.java index 80fa45b96..bbc58c5e5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/FloatAndFlexTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/FloatAndFlexTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/NestedFlexTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/NestedFlexTest.java index 78b296c16..d844cc3b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/NestedFlexTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/NestedFlexTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/flex/PageSplitTest.java b/src/test/java/com/itextpdf/html2pdf/css/flex/PageSplitTest.java index 19a07f4c7..a6c78814d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/flex/PageSplitTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/flex/PageSplitTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridAreaTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridAreaTest.java index 723216309..065b51956 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridAreaTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridAreaTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridGapTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridGapTest.java index 5590b9303..36594e7b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridGapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridGapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridItemPlacementTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridItemPlacementTest.java index 178e05bd8..37bd84d41 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridItemPlacementTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridItemPlacementTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridLinenameTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridLinenameTest.java index 41f7255ac..a2d76f108 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridLinenameTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridLinenameTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridRelativeValuesTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridRelativeValuesTest.java index 4e8231dcd..2e5adf572 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridRelativeValuesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridRelativeValuesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateColumnTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateColumnTest.java index 6d42360bc..ec5f33baa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateColumnTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateColumnTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateCombinedTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateCombinedTest.java index 80584f4c5..f7bc03577 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateCombinedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateCombinedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateElementPropertyContainerTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateElementPropertyContainerTest.java index 079e7e272..f624d8237 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateElementPropertyContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateElementPropertyContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateNestedTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateNestedTest.java index 3d4f727a0..ae3a97c52 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateNestedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateNestedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateRowTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateRowTest.java index 00dc830d3..6803936e5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateRowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplateRowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplatesTest.java b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplatesTest.java index 5fd93c794..b21d241f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplatesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/grid/GridTemplatesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/media/MediaRuleIntegrationTest.java b/src/test/java/com/itextpdf/html2pdf/css/media/MediaRuleIntegrationTest.java index c90eb025c..86ffa776d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/media/MediaRuleIntegrationTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/media/MediaRuleIntegrationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/media/MediaRuleTest.java b/src/test/java/com/itextpdf/html2pdf/css/media/MediaRuleTest.java index 768deb6e6..57d63d3d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/media/MediaRuleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/media/MediaRuleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/media/page/HtmlPageMarginBoxImageSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/media/page/HtmlPageMarginBoxImageSizeTest.java index 6ec194ef8..63b28def6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/media/page/HtmlPageMarginBoxImageSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/media/page/HtmlPageMarginBoxImageSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/media/page/PageMarginBoxIntegrationTest.java b/src/test/java/com/itextpdf/html2pdf/css/media/page/PageMarginBoxIntegrationTest.java index 0f2e37d7f..ea19b5265 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/media/page/PageMarginBoxIntegrationTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/media/page/PageMarginBoxIntegrationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/media/page/fix_dimension/PageMarginBoxFixDimensionTest.java b/src/test/java/com/itextpdf/html2pdf/css/media/page/fix_dimension/PageMarginBoxFixDimensionTest.java index 6f962a411..040d94c6b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/media/page/fix_dimension/PageMarginBoxFixDimensionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/media/page/fix_dimension/PageMarginBoxFixDimensionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/media/page/max_dimension/PageMarginBoxMaxDimensionTest.java b/src/test/java/com/itextpdf/html2pdf/css/media/page/max_dimension/PageMarginBoxMaxDimensionTest.java index 68c5a84a8..53e21c3d0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/media/page/max_dimension/PageMarginBoxMaxDimensionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/media/page/max_dimension/PageMarginBoxMaxDimensionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/media/page/min_dimension/PageMarginBoxMinDimensionTest.java b/src/test/java/com/itextpdf/html2pdf/css/media/page/min_dimension/PageMarginBoxMinDimensionTest.java index 65c8d4220..ce0b2d4c8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/media/page/min_dimension/PageMarginBoxMinDimensionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/media/page/min_dimension/PageMarginBoxMinDimensionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/multicol/BreakTest.java b/src/test/java/com/itextpdf/html2pdf/css/multicol/BreakTest.java index 2cd1dc8ad..7783f2cfb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/multicol/BreakTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/multicol/BreakTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnCountTest.java b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnCountTest.java index a4baeee28..a5cbcf5e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnCountTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnCountTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnGapTest.java b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnGapTest.java index 984e26efd..99b35d94b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnGapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnGapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnRuleTest.java b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnRuleTest.java index 1041566f7..3d2d53d5a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnRuleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnRuleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnWidthTest.java b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnWidthTest.java index ff0e4366d..378f926d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnWidthTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnWidthTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnsTest.java b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnsTest.java index c906c5589..2580c75f3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/multicol/ColumnsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolverIntegrationTest.java b/src/test/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolverIntegrationTest.java index bf0a95b68..4c4150dc0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolverIntegrationTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolverIntegrationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolverTest.java b/src/test/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolverTest.java index 239864a8f..379e3f954 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolverTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/resolve/CssContentPropertyResolverTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/resolve/CssVariableResolverTest.java b/src/test/java/com/itextpdf/html2pdf/css/resolve/CssVariableResolverTest.java index 3b112886b..5c41a03cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/resolve/CssVariableResolverTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/resolve/CssVariableResolverTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverterIntegrationTest.java b/src/test/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverterIntegrationTest.java index fb2eb41be..9c9b7885f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverterIntegrationTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverterIntegrationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverterTest.java b/src/test/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverterTest.java index e097875f3..c8ffc8fa3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/resolve/HtmlStylesToCssConverterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/resolve/func/counter/CssCounterManagerTest.java b/src/test/java/com/itextpdf/html2pdf/css/resolve/func/counter/CssCounterManagerTest.java index ec6ea5ad7..2684031a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/resolve/func/counter/CssCounterManagerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/resolve/func/counter/CssCounterManagerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageTargetCountElementNodeTest.java b/src/test/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageTargetCountElementNodeTest.java index 86b302a75..4d705f816 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageTargetCountElementNodeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/resolve/func/counter/PageTargetCountElementNodeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/selector/item/ConstantApplyingPseudoClassesTest.java b/src/test/java/com/itextpdf/html2pdf/css/selector/item/ConstantApplyingPseudoClassesTest.java index 7d6086e89..ac383e34d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/selector/item/ConstantApplyingPseudoClassesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/selector/item/ConstantApplyingPseudoClassesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/selector/item/NonStandardNodesMatchingTest.java b/src/test/java/com/itextpdf/html2pdf/css/selector/item/NonStandardNodesMatchingTest.java index 862d1c133..aa7fffb53 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/selector/item/NonStandardNodesMatchingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/selector/item/NonStandardNodesMatchingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/util/CssStyleSheetAnalyzerTest.java b/src/test/java/com/itextpdf/html2pdf/css/util/CssStyleSheetAnalyzerTest.java index 23ecaecb8..841d0f42d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/util/CssStyleSheetAnalyzerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/util/CssStyleSheetAnalyzerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/W3CCssTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/W3CCssTest.java index 04bb2656e..77bb731a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/W3CCssTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/W3CCssTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background001Test.java index 17a88ec53..1db76e33e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background002Test.java index c4ffef2ff..701581e76 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background003Test.java index e2c26e662..91205b3d5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background004Test.java index 97cf13308..aa179a8d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background005Test.java index ada4691ac..9b48e70cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background006Test.java index d42ead2e5..36529eac1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background006aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background006aTest.java index 3c4cd45f1..78dea6a0c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background006aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background006aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background007Test.java index 6d6e19c40..067cc4d41 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background008Test.java index 9cba17ac0..ee764d0e9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background009Test.java index 64067704b..60c1c9031 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background010Test.java index 3cdff06ea..2b10b4c92 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background011Test.java index 90d2243e8..d4a1180a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background013Test.java index 4d7ceda5c..720eecb36 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background014Test.java index 9175bbea6..db2220aba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background015Test.java index e1bfa3f1c..fef3756cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background016Test.java index 84e25c7dc..71258903d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background017Test.java index 63bd13883..c0b8ccaa5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background018Test.java index 969e6e99a..18a16ec18 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background020Test.java index 06e816f35..5d02baf37 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background021Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background021Test.java index 756e9fc47..b1ed18395 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background021Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background021Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background022Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background022Test.java index 3a5e9b6de..d615465a0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background022Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background022Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background023Test.java index e77f6544e..5e09ee6fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background024Test.java index 0362f4377..d41d99e82 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background025Test.java index 94b0232f9..82fa586bc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background026Test.java index 422c51bed..77947e0d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background028Test.java index 576444bd7..fc6bd3387 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background029Test.java index b816ce9c0..f942447ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background030Test.java index 9cbceaecd..974b36c32 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background031Test.java index 126796107..9c5e4e0c3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background033Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background033Test.java index d8023af86..77d32b166 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background033Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background033Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background034Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background034Test.java index cd823d031..398924021 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background034Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background034Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background035Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background035Test.java index ee62e30da..f6c71e1af 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background035Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background035Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background036Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background036Test.java index 13f167967..596fe4ffd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background036Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background036Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background037Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background037Test.java index 6e7fec061..062ffaa6e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background037Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background037Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background038Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background038Test.java index f4f6e573f..00f8d9fe5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background038Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background038Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background040Test.java index 3d5dc4cd4..ea55c33f9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background041Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background041Test.java index dca85361f..206c8dcb8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background041Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background041Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background043Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background043Test.java index 90035bdbc..7864bc535 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background043Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background043Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background047Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background047Test.java index c7b39d077..28ded3147 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background047Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background047Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background048Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background048Test.java index 44892c493..0f584713f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background048Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background048Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background050Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background050Test.java index e0c2ed3ff..ba2eac123 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background050Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background050Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background051Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background051Test.java index 1cbabd857..cdbe3b833 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background051Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background051Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background052Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background052Test.java index 3bc6f366e..f331cbae7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background052Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background052Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background053Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background053Test.java index e6bdf2b29..9128c9ba9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background053Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background053Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background055Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background055Test.java index 9dd755052..84816e70a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background055Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background055Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background056Test.java index cee2135cf..6fe6e35fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background058Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background058Test.java index 31f621c7b..7da7d1317 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background058Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background058Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background059Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background059Test.java index f15234b90..b5c10ea8e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background059Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background059Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background060Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background060Test.java index df4a474e9..308c34dda 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background060Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background060Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background061Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background061Test.java index 687ba2ef4..8bc46b26f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background061Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background061Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background063Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background063Test.java index 7a8f46c1c..902d3c5a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background063Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background063Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background064Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background064Test.java index 7d806e998..072a278f5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background064Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background064Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background068Test.java index e33c94555..9c98150d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background070Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background070Test.java index 61da90ec2..286b9cf8c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background070Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background070Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background071Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background071Test.java index 109e084ee..564dee967 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background071Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background071Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background073Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background073Test.java index 1783839dd..bcb321e5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background073Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background073Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background074Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background074Test.java index 67074ea67..a8a08a81e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background074Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background074Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background075Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background075Test.java index e1bc66b05..cbb2dd861 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background075Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background075Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background076Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background076Test.java index 06a79b520..b34892ea6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background076Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background076Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background077Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background077Test.java index b75a56196..09df03234 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background077Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background077Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background078Test.java index cf7803401..f20367c0f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background080Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background080Test.java index 829cdf401..170cfa31c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background080Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background080Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background081Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background081Test.java index 8927b8bb9..5018ddfc3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background081Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background081Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background082Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background082Test.java index 74a912e55..b1c9ec542 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background082Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background082Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background083Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background083Test.java index 8c95554cf..4b9e73f75 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background083Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background083Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background085Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background085Test.java index 2ecc5b131..bae9574cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background085Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background085Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background087Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background087Test.java index 8c4e77476..95c3efb6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background087Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background087Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background090Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background090Test.java index e46929f27..db8409228 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background090Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background090Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background093Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background093Test.java index 47515d6e7..cd23f96c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background093Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background093Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background095Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background095Test.java index 027d01390..18670c568 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background095Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background095Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background096Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background096Test.java index 4292b4bf7..91b1311ce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background096Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background096Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background097Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background097Test.java index 4203a64a2..c21d80d9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background097Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background097Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background103Test.java index 8046845b0..60f4fc03a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background104Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background104Test.java index 721728f1e..67e0778c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background104Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background104Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background106Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background106Test.java index 9690dacc4..4b16eb785 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background106Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background106Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background107Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background107Test.java index be6f8c872..1e2385737 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background107Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background107Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background109Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background109Test.java index 69dfe9995..56a7a4011 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background109Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background109Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background111Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background111Test.java index 6c1695518..697acef21 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background111Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background111Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background114Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background114Test.java index fa2657b6d..da50a9c93 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background114Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background114Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background117Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background117Test.java index 355cf2708..1de9d6a5f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background117Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background117Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background120Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background120Test.java index 826fbc9b3..553d587c8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background120Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background120Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background128Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background128Test.java index e0497dfc0..e3fee9438 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background128Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background128Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background130Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background130Test.java index 2d0514ab4..210fd076e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background130Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background130Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background135Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background135Test.java index d0228c9c9..7effc7bc3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background135Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background135Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background137Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background137Test.java index b4f07a9ac..a06a7d5e3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background137Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background137Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background138Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background138Test.java index 567b0c9ba..829fdb978 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background138Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background138Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background139Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background139Test.java index c79dbb016..60079f6ef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background139Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background139Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background141Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background141Test.java index b25927323..ac7ca6d24 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background141Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background141Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background144Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background144Test.java index 431c924bc..4970aeffb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background144Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background144Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background147Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background147Test.java index d737c98df..509dd20ef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background147Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background147Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background150Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background150Test.java index db08441de..39a8fa7ed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background150Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background150Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background152Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background152Test.java index 7f7ba73bc..944967bf1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background152Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background152Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background153Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background153Test.java index a686f0290..eb5e7bf0f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background153Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background153Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background154Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background154Test.java index a48d01d6d..9ab67d8e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background154Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background154Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background156Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background156Test.java index f81de9ff9..384f01c5f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background156Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background156Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background161Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background161Test.java index 53dc7a6e0..8baaf6ce6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background161Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background161Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background163Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background163Test.java index 4a641e35a..f2bc0fdec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background163Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background163Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background182Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background182Test.java index 66879f343..29f1d2405 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background182Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background182Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background184Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background184Test.java index 27a566109..5e38890be 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background184Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background184Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background188Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background188Test.java index 64e85aaf9..9f46a3229 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background188Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background188Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background190Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background190Test.java index 923d39b55..e4ffa5f34 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background190Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background190Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background194Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background194Test.java index 9bf1f5e2a..b9e2d93b3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background194Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background194Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background196Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background196Test.java index 569496c3c..d7a161bab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background196Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background196Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background326Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background326Test.java index 98d9704ff..496f3b3f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background326Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background326Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background327Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background327Test.java index 25ab6f2f6..15ad53788 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background327Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background327Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background328Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background328Test.java index d35c30b4e..350ba44e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background328Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background328Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background329Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background329Test.java index b9d14ce2a..ea1e1b079 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background329Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background329Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background330Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background330Test.java index a41bda084..f6ccd6b2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background330Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/Background330Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo001Test.java index a612683db..d656e4fe2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo002Test.java index dd2c02ebc..19ffff371 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo003Test.java index 5d4e74171..ad37d0803 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo004Test.java index f53625305..34b777fa2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo005Test.java index 72a1fa99a..c09ccb89f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo006Test.java index cabe95d2c..a06d8d449 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo007Test.java index 2f2423471..f24b6cb7d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo008Test.java index 688554e1e..adc62f710 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo009Test.java index f3b3c6946..1d956c6e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo010Test.java index e07436941..cfa6e0156 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo012Test.java index 4b1132b0d..0c408591e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo013Test.java index df590a820..97988955b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo014Test.java index 72a2c22ac..7ee557dce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo015Test.java index babfcab10..db17bf90a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachment009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachment009Test.java index 3cd2eb0b1..4dbed2fed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachment009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachment009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo001Test.java index be210a9c5..4bb9cde40 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo002Test.java index bd374d2eb..944a67d6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo003Test.java index 7c9067f24..8ff32ece5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo004Test.java index 842ef9418..c7bae7ea6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo005Test.java index 19a09faca..98ccf42b8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo006Test.java index af485998f..64f8a1318 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo007Test.java index fa6e1d7b5..c851c2c6e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo008Test.java index 1105b44ba..3d0964805 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo009Test.java index 6b746081c..82e0d21dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo010Test.java index ec8d8a3a9..5a40e73b4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo012Test.java index b59e5d5c1..19a7d372a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo013Test.java index f3074b05a..5c4d1884a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo014Test.java index f160d73d5..5544612d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo015Test.java index 99d512ab6..3273fcb86 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos204Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos204Test.java index 8f4a5a7fe..e7ceff6a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos204Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos204Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos206Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos206Test.java index 671282dfa..a34f2cc3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos206Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos206Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos208Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos208Test.java index 385a597be..de068687d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos208Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos208Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody001Test.java index 86b817bf9..116d49a0a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody002Test.java index 139aced3a..5d3eb22a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody003Test.java index 818d5e260..34857dea3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundBody003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor001Test.java index af74e5311..312aba0d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor002Test.java index c6a10c9df..06dfe0f89 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor003Test.java index 8d9118682..5bf0b4af8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor004Test.java index 4f5284773..a0909d443 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor005Test.java index df8c71395..de34ee8e9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor006Test.java index 275618938..cd0420a2b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor007Test.java index 24cccad36..01f30c77a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor008Test.java index de8ced674..0a6cd7f60 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor009Test.java index 110352876..51ae909eb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor010Test.java index c9aab8efa..70a122718 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor011Test.java index 45910284e..5fa5938c2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor012Test.java index eebf105f0..c412b7ff4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor013Test.java index c8bc82616..5ca3567d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor014Test.java index ad8cbe120..612c8f2c3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor015Test.java index 7c397e868..c88311679 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor016Test.java index 5d6742d57..502dd476e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor017Test.java index 0e5f332dd..1da32d6bf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor018Test.java index 3d8fbcbe9..63a87fe22 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor019Test.java index 66a13e56f..4d847d452 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor020Test.java index c9a77ff1f..e3d49aa87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor021Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor021Test.java index fe955a857..87b609f9e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor021Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor021Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor022Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor022Test.java index 31a02ebe8..d8d0764cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor022Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor022Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor023Test.java index 2b335b2ed..16879cb24 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor024Test.java index 5dc7da799..a9ed3088b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor025Test.java index a44860857..37e8a10f5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor026Test.java index bfeed3228..7c009be35 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor027Test.java index cbd640a05..2bd6907b8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor028Test.java index 169a6a3a9..038bb1dfd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor029Test.java index b0d920585..64698af18 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor030Test.java index eed023f9b..5b1692e7d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor031Test.java index 744f878f6..8874fecb4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor032Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor032Test.java index eea9c4f40..283381d28 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor032Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor032Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor033Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor033Test.java index 47753b346..d766b086e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor033Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor033Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor034Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor034Test.java index 3c2407d58..ad5e86ada 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor034Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor034Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor035Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor035Test.java index aa499e59e..2b0a68e26 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor035Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor035Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor036Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor036Test.java index 3ef10a86b..a86250bd3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor036Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor036Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor037Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor037Test.java index 3f1ceee6e..22fc7bcff 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor037Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor037Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor038Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor038Test.java index 3b1726c78..aae79697a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor038Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor038Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor039Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor039Test.java index 95d6411f6..5cf5f2e6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor039Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor039Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor040Test.java index f9012b82e..2ca382b1f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor041Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor041Test.java index 093f90115..800831932 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor041Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor041Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor042Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor042Test.java index 6456f0b08..c72a02d81 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor042Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor042Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor043Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor043Test.java index 77e97817c..b137fc8b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor043Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor043Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor044Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor044Test.java index 6ccca3c70..addb3ecb2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor044Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor044Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor045Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor045Test.java index b575f57b1..ff61cdf0b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor045Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor045Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor046Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor046Test.java index 524ed8d57..c30cbbd87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor046Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor046Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor047Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor047Test.java index 7a6b8a1d5..961b34d82 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor047Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor047Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor048Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor048Test.java index a219b2455..1d95c71e2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor048Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor048Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor050Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor050Test.java index 844217686..c7a5da518 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor050Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor050Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor051Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor051Test.java index 0a0a6d318..53c0da803 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor051Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor051Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor055Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor055Test.java index 697f38298..fe4054006 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor055Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor055Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor056Test.java index cad50eb39..850deaeba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor057Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor057Test.java index df6e8bfe4..48527f895 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor057Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor057Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor058Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor058Test.java index 2ec6b4bbb..0f8cf028f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor058Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor058Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor059Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor059Test.java index a9b53663c..82fe3506b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor059Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor059Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor060Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor060Test.java index 976f388ec..816f7a2fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor060Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor060Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor061Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor061Test.java index c5ddf0ec5..0dd994063 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor061Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor061Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor062Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor062Test.java index 68abd2f3e..5d3b2ef53 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor062Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor062Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor063Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor063Test.java index 4ad7db234..f1ddcbab5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor063Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor063Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor064Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor064Test.java index 8acaaa8dd..ee6bf36b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor064Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor064Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor065Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor065Test.java index 1827cd930..4fed8b284 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor065Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor065Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor066Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor066Test.java index b4aca98fc..5b281ddda 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor066Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor066Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor067Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor067Test.java index 1625d144f..8d30b2d13 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor067Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor067Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor068Test.java index d698710bb..e6c92f628 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor069Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor069Test.java index 8ec8e3632..2d7e223e3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor069Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor069Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor071Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor071Test.java index 6f9db1b13..47f7f08cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor071Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor071Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor072Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor072Test.java index a145edb7c..89f650f37 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor072Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor072Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor076Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor076Test.java index 6042cf184..575316c7f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor076Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor076Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor077Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor077Test.java index da6061586..396c4a963 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor077Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor077Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor078Test.java index b3df28c35..95210825a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor079Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor079Test.java index a29433e40..06ca5bd30 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor079Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor079Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor080Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor080Test.java index 5fe3acbff..b2a58733f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor080Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor080Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor081Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor081Test.java index 8e1b684d3..d2ef3aad6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor081Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor081Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor082Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor082Test.java index c8e0e99a5..78397478c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor082Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor082Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor083Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor083Test.java index 73245f211..f4e513ab1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor083Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor083Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor084Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor084Test.java index d82bb6e59..fd0226d55 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor084Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor084Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor085Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor085Test.java index a9e3f3365..db38b57ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor085Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor085Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor086Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor086Test.java index 8e8310f9c..ccbb24f9e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor086Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor086Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor087Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor087Test.java index dfdf45785..11df727c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor087Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor087Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor088Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor088Test.java index 90e4ce763..284463a8b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor088Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor088Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor089Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor089Test.java index 7d059b39a..c4c2b073d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor089Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor089Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor091Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor091Test.java index d8789082c..9ad96753c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor091Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor091Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor092Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor092Test.java index 1346fbb02..aec1a88b9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor092Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor092Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor096Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor096Test.java index dab4f6f55..22578ea29 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor096Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor096Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor097Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor097Test.java index d49fe2e73..3f6be11d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor097Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor097Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor098Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor098Test.java index 0e47dc6e0..286566113 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor098Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor098Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor099Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor099Test.java index 4797a1b3f..c46f4323d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor099Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor099Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor100Test.java index 681f5df51..e2e43cad7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor101Test.java index 7f7bd16b6..e88a59636 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor102Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor102Test.java index 9022c6c6b..0aaec700e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor102Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor102Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor103Test.java index 7d88b6c31..27b006cf1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor104Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor104Test.java index e14cb5783..afd1edaf8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor104Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor104Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor105Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor105Test.java index b202abee1..13e7de7fb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor105Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor105Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor106Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor106Test.java index 49ed29100..8eed7ca0e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor106Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor106Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor107Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor107Test.java index 6b91bd5ac..bbed2d1c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor107Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor107Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor108Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor108Test.java index 383eff073..362115b8e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor108Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor108Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor109Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor109Test.java index b7f7eba27..1ffb1db34 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor109Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor109Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor111Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor111Test.java index 718b125ff..9613c0396 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor111Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor111Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor112Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor112Test.java index 932a6cab5..597af546f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor112Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor112Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor116Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor116Test.java index 97bf1518e..a6473ac52 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor116Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor116Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor117Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor117Test.java index 03c4150ff..0278e56be 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor117Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor117Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor118Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor118Test.java index f27d28f19..e57502e30 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor118Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor118Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor119Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor119Test.java index e1b6e2e0b..e4ba470a6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor119Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor119Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor120Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor120Test.java index 58bbaa8ca..192cc29af 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor120Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor120Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor121Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor121Test.java index 741781280..8e7b6f96f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor121Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor121Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor122Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor122Test.java index f2ff581f7..c5d5ecb8d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor122Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor122Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor123Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor123Test.java index e5893fca5..30fc17344 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor123Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor123Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor124Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor124Test.java index 017053c61..4a286e6fb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor124Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor124Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor125Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor125Test.java index 79b22075a..09f842094 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor125Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor125Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor126Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor126Test.java index 0a88888d8..d2e757731 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor126Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor126Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor127Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor127Test.java index d95811b1f..f0cd2b91f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor127Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor127Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor128Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor128Test.java index 6b9e8cf26..230a7a4a6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor128Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor128Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor129Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor129Test.java index 5d6f68d83..01c2b0974 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor129Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor129Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor130Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor130Test.java index 90912a67c..f8500cea0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor130Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor130Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor131Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor131Test.java index d67ac670e..d2297cabb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor131Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor131Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor132Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor132Test.java index 436192600..374737851 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor132Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor132Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor133Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor133Test.java index 335c635c6..18486e243 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor133Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor133Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor134Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor134Test.java index 6bf598071..630048b8a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor134Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor134Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor135Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor135Test.java index f3aca80d8..7921511cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor135Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor135Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor136Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor136Test.java index 95e957147..1b325c076 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor136Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor136Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor137Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor137Test.java index 87ce835b8..5e63f3f99 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor137Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor137Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor138Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor138Test.java index c22664824..2c6359b6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor138Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor138Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor139Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor139Test.java index 2028e1806..2102469f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor139Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor139Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor140Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor140Test.java index 0ba58807b..63e7b5267 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor140Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor140Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor141Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor141Test.java index fc825eb8f..7c8c84490 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor141Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor141Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor142Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor142Test.java index 9e24e7a55..474614859 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor142Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor142Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor143Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor143Test.java index 740bf2044..24d45f2f4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor143Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor143Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor144Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor144Test.java index bf25f4d3a..3c22015d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor144Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor144Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor145Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor145Test.java index df2fff51e..9d39d6721 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor145Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor145Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor174Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor174Test.java index 62fdbe02d..7230f53cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor174Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor174Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor175Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor175Test.java index e5eddd218..82fe39a9e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor175Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColor175Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo001Test.java index 4de721d59..de61933a2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo002Test.java index 0c271038a..0df2bc1c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo003Test.java index 218fbbceb..2547c947a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo004Test.java index 633e9cef1..da550557f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo005Test.java index 0f51aab0b..4796023c2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo006Test.java index 04189e668..0095ac5ad 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo007Test.java index 150c9cc07..a75aea9ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo008Test.java index 0b57d35b0..dd9c84b7d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo009Test.java index a4f328728..4a0d8a60e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo010Test.java index 4a5dbf596..df7ac4789 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo012Test.java index 74dc6ea26..4cedbc8b9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo013Test.java index d5eeb4f98..a081427ec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo014Test.java index 73b5c0254..f37dfc749 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo015Test.java index d466abad5..982b36361 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover001Test.java index ece2437ef..f7eb27368 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover002Test.java index 3687fdcfe..ec03c2926 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover003Test.java index 7eaba2503..1d4314070 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover004Test.java index ba382b472..7499095bd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundCover004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundHtmlBody001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundHtmlBody001Test.java index c0d1fcd81..7bab86830 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundHtmlBody001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundHtmlBody001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIframes001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIframes001Test.java index 87f36e565..30b872e25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIframes001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIframes001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage001Test.java index 855762fb1..82ea74955 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage002Test.java index 2b34bd45f..d1f84c29f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage003Test.java index f28e6f0c8..17844c9a7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage005Test.java index 40303f51c..bd003517c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImage005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo001Test.java index 55af8bee6..cd0222cc1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo002Test.java index 792bfac19..e770dd126 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo003Test.java index 277281e0b..64cd6988a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo004Test.java index ddaeba5c0..6c3411d04 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo005Test.java index a5405e2a8..b84b8ae88 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo006Test.java index 2ee18a508..6cad6d152 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo007Test.java index 26da77764..c5c60be7e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo008Test.java index f4361caa3..ac300cd09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo009Test.java index c6ac58484..986ad41e4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo010Test.java index f161bb0c1..040d8402c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo012Test.java index 454d7a99e..16edfa522 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo013Test.java index 5081c0a1d..6e7ada227 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo014Test.java index 23a01866e..93bfe75a2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo015Test.java index f0bd79c42..105401e1d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover001Test.java index d36a63e21..f63e98b5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover002Test.java index 407ec73ee..8dc515ba2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover003Test.java index 5a1450ffd..613994e5d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover004Test.java index fc19508c5..38c250304 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCoverAttachment001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCoverAttachment001Test.java index 0175b48fb..dd6abdfbe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCoverAttachment001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCoverAttachment001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageTransparency001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageTransparency001Test.java index ed12d509a..40bdc10aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageTransparency001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundImageTransparency001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic001Test.java index 7ad9ac5e4..fa0ef3a49 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic002Test.java index aee294ab3..4ba602755 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic003Test.java index 80720bc85..3f6520c56 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic004Test.java index a66a18d7e..948e9f290 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic005Test.java index 7689474e8..96423a273 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic006Test.java index 75c2e11b8..d99109b34 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic007Test.java index c8b74a841..e726442ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic008Test.java index d24363b84..2514650b6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic009Test.java index 690edeaca..b832f1b2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic010Test.java index 26daa44ef..42ff566c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition004Test.java index d98549a33..2e44aba02 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition005Test.java index 7466adbf5..3db7f204d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition006Test.java index 3d0156079..d54f411f3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition007Test.java index 9960c4f6d..c8335b46e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition008Test.java index b6054356e..1d6bf6d9f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition016Test.java index 942b92533..b57d58c2b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition017Test.java index 91de715cf..8a9a1204c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition018Test.java index 869ae3807..7236d88d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition019Test.java index dadcfebbb..2b28c6a09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition020Test.java index 96e95260a..60ac11a09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition028Test.java index 9795206ff..61d1b45e7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition029Test.java index 42b5c43f2..69b3d7618 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition030Test.java index 7cd0f57dc..64198b14f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition031Test.java index 9841ca907..4b99ea40b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition032Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition032Test.java index c079a7a90..88451ac7e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition032Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition032Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition040Test.java index e460b3c3a..1594a1093 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition041Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition041Test.java index 9b7176406..02d5d312a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition041Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition041Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition042Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition042Test.java index a7f889d1f..0389959a0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition042Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition042Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition043Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition043Test.java index 09393b0ae..276540d89 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition043Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition043Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition044Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition044Test.java index 70d2827eb..fbe9c58f1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition044Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition044Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition052Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition052Test.java index d1b9128ff..73cb66ed8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition052Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition052Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition053Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition053Test.java index be31a80fe..dac2fe3b8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition053Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition053Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition054Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition054Test.java index ed0a40bc7..a5e9e9dad 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition054Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition054Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition055Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition055Test.java index 752ff1663..0dd3d696d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition055Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition055Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition056Test.java index dcde1a224..318ac79d4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition064Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition064Test.java index d24a8489e..5224d5fbb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition064Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition064Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition065Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition065Test.java index 26e435b53..02a69a26d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition065Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition065Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition066Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition066Test.java index 95b104500..8f6a363d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition066Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition066Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition067Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition067Test.java index 53011954d..a9b1ef446 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition067Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition067Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition068Test.java index f87e04cdb..9ea1e25ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition076Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition076Test.java index efb3e2e05..6395be640 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition076Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition076Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition077Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition077Test.java index 21b47e664..e75af49a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition077Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition077Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition078Test.java index 4b3392499..b458e5068 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition088Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition088Test.java index 031ea51c7..ef45c174c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition088Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition088Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition089Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition089Test.java index 2f3d03a45..2cc3b2dc2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition089Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition089Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition090Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition090Test.java index 222682d6f..c2768a074 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition090Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition090Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition100Test.java index 544059c2a..cd297536a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition101Test.java index a7bb15955..53784dc26 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition102Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition102Test.java index da06c2278..48b125766 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition102Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition102Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition103Test.java index 7ca01ca9b..2ce37dfc4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition104Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition104Test.java index f78a79f81..d40cfbfb0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition104Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition104Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition109Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition109Test.java index 21c115a70..b0bd697a2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition109Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition109Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition110Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition110Test.java index 74ef3fd77..8f6cc5119 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition110Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition110Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition111Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition111Test.java index 9142ec519..257d181d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition111Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition111Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition112Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition112Test.java index de5ff05fb..8a3b782a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition112Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition112Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition113Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition113Test.java index 8e9b76988..bb467c552 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition113Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition113Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition114Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition114Test.java index fe1778ec8..c55935a9c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition114Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition114Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition115Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition115Test.java index d85b87e90..2cd895455 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition115Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition115Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition116Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition116Test.java index 967efef64..ccf3f3ad4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition116Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition116Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition117Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition117Test.java index 3c282044d..0c12f2c8d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition117Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition117Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition118Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition118Test.java index 0eb8b788c..f5142788e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition118Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition118Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition119Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition119Test.java index d29980d85..289e4e473 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition119Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition119Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition120Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition120Test.java index cd45557d4..0190fb3dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition120Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition120Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition121Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition121Test.java index 91c635b97..35e936109 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition121Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition121Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition122Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition122Test.java index b5375e34f..7006e1873 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition122Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition122Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition123Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition123Test.java index 076a6f9cf..dde509d55 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition123Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition123Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition124Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition124Test.java index e0ad3fdc2..dc621397e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition124Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition124Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition125Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition125Test.java index 4ea50329b..e1fc83199 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition125Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition125Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition126Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition126Test.java index a222c5ee5..f08ffbaee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition126Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition126Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition127Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition127Test.java index b049cfb6e..6ba304be3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition127Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition127Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition128Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition128Test.java index 419554fca..773cf65a2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition128Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition128Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition129Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition129Test.java index 9d1c39282..0e309c837 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition129Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition129Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition130Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition130Test.java index 7672e80f7..d9b3dedc8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition130Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition130Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition131Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition131Test.java index 9195ace36..a4ec49dcc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition131Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition131Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition132Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition132Test.java index 745b16947..03ffa97c5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition132Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition132Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition133Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition133Test.java index 11b692b9f..171c7eddd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition133Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition133Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition134Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition134Test.java index 935be2cf4..d8e442626 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition134Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition134Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition135Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition135Test.java index 004f0c056..50378b790 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition135Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition135Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition136Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition136Test.java index 0e24dddac..ff5da89ec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition136Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition136Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition137Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition137Test.java index 1d5364b46..731929827 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition137Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition137Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition138Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition138Test.java index ff3c3e623..432b0daa1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition138Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition138Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition139Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition139Test.java index e3ffc543a..a000e2569 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition139Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition139Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition140Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition140Test.java index 2ff879d7f..b9d1e297c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition140Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition140Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition141Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition141Test.java index 2500a56fb..c5f0189f9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition141Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition141Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition142Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition142Test.java index c64429a4e..b62007fee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition142Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition142Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition143Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition143Test.java index a46d27de2..c312c7aeb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition143Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition143Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition144Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition144Test.java index 8683136d9..5117f1139 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition144Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition144Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition145Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition145Test.java index b0cae81ae..d131bad25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition145Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition145Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition146Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition146Test.java index 742b26c4d..62b4065cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition146Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition146Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition147Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition147Test.java index 3ed864e89..934241056 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition147Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition147Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition148Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition148Test.java index 3a2807593..162bc12bf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition148Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition148Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition149Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition149Test.java index 4fcfdc5fd..c280fcad3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition149Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition149Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition150Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition150Test.java index da7d82b50..e25f77ecb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition150Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition150Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition151Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition151Test.java index 78a3dcf71..5842d5b0e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition151Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition151Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition202Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition202Test.java index e4c434da0..13bfa8b21 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition202Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition202Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -27,7 +27,6 @@ This file is part of the iText (R) project. import com.itextpdf.test.annotations.LogMessage; import com.itextpdf.test.annotations.LogMessages; -// TODO DEVSIX-2431 Positioned elements are lost when block is split across pages. @LogMessages(messages = { @LogMessage(messageTemplate = StyledXmlParserLogMessageConstant.INVALID_CSS_PROPERTY_DECLARATION, count = 21) }) diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition203Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition203Test.java index 3ac7bb8ab..3e559e3d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition203Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition203Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -27,7 +27,6 @@ This file is part of the iText (R) project. import com.itextpdf.test.annotations.LogMessage; import com.itextpdf.test.annotations.LogMessages; -// TODO DEVSIX-2431 Positioned elements are lost when block is split across pages. @LogMessages(messages = { @LogMessage(messageTemplate = StyledXmlParserLogMessageConstant.WAS_NOT_ABLE_TO_DEFINE_BACKGROUND_CSS_SHORTHAND_PROPERTIES, count = 2), @LogMessage(messageTemplate = StyledXmlParserLogMessageConstant.INVALID_CSS_PROPERTY_DECLARATION, count = 19), diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001Test.java index 89c0b20c7..13f4c0c62 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001aTest.java index 7e607cc7c..b76178506 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001bTest.java index 544724c37..29df7e13f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001cTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001cTest.java index 65b3246bd..e596e1979 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001cTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001cTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002Test.java index 021c6a4c4..43fab790c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002aTest.java index 60f60987f..e312094d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003Test.java index 1e6ac1b2a..260481ed8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003aTest.java index 776e2586a..453959385 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo004Test.java index 1d16596ab..250c6bd6e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005Test.java index 8e9f7c3d7..b5459c90f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005aTest.java index 0a9641abf..5460d7eeb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006Test.java index ca3acb844..b5490caef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006aTest.java index 10b5fe8f8..10d452600 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007Test.java index 204e92256..290244db2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007aTest.java index b8af0b519..930e99294 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo008Test.java index 0171d9cca..e04372dde 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo009Test.java index ae43d9d86..dfc51047b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo010Test.java index 3fe486587..f90a32046 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo012Test.java index b16a020d5..cda65fe8d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo013Test.java index 1a88042bf..503c06a9d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo014Test.java index f6b85fac6..90da9174a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo015Test.java index 97ef1c1d2..4da345433 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat001Test.java index 4653e17d3..b31ee9136 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat002Test.java index b196123c9..3ba1a872a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat003Test.java index da4a25d52..29aa75d6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat004Test.java index 5f42ef001..30a6ba938 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat005Test.java index 3a4760352..cd339ddf6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo001Test.java index 4f1d11c89..b88fc6370 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo002Test.java index cda6b2644..ca44e49b6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo003Test.java index edd81a459..967408eea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo004Test.java index 393931b28..a7e3634f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo005Test.java index 8f9ab6ee4..af6bce971 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo006Test.java index 6cd0ba15d..99488a48a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo007Test.java index 203fdefa8..5f4f52a68 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo008Test.java index 1bb3ff9fb..5038bed8b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo009Test.java index c95ee81fa..535edaca8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo010Test.java index be2f9aab7..b1d0abef4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo012Test.java index c80cb00f6..7ef151332 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo013Test.java index be0e36f93..ae168fa1a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo014Test.java index 29b7fbdae..f35231413 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo015Test.java index 8c0d19ad6..968528cbb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundReset001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundReset001Test.java index d4143af6d..edd99e787 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundReset001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundReset001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot001Test.java index 59e6ad426..8b984dff9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot002Test.java index 4634ca9c4..ec16fc3ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot003Test.java index 3c6097dbc..1b1818100 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot004Test.java index 33da75380..1f88a0527 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot005Test.java index 2909ba71b..f38fab866 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot006Test.java index d1e2490a7..b23ef3e3f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot007Test.java index 8ca3918a8..6870d70ce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot008Test.java index 1818e1afd..10f281c61 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot009Test.java index a67d8e905..7f01149f0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot010Test.java index bf58cdaa5..5688a0cf1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot011Test.java index 9d1d8b638..3d6d45938 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012aTest.java index fd4d80b1e..c76a8bcc6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012bTest.java index 5182ade75..165fee823 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013aTest.java index db519770c..d76151eec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013bTest.java index f5fcb6bbe..4e5f6c0bd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014aTest.java index ac41c6596..3e4c8548e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014bTest.java index 3b63a6276..13113f9c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot015Test.java index 0b3374813..7113835e4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot016Test.java index 5b8973640..ca49585cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot017Test.java index cfa900053..15fc08e16 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot018Test.java index fd608cd67..ef0ff9819 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot019Test.java index f05dae08f..4a40001f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot020Test.java index 6b3837bdc..ffc5e0298 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot023Test.java index fb953b9c9..6f1bf0bd9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot024Test.java index 5e475f000..f7bb0b9ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundTransparency001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundTransparency001Test.java index ae8b9904c..6957f35b0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundTransparency001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/backgrounds/BackgroundTransparency001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter000Test.java index 8521e292b..f171a4e71 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter001Test.java index 0f9bca81e..2bb29751b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter002Test.java index beb9750c8..17ae5b74a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter003Test.java index ebd46a021..1a50f54d5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter004Test.java index 841005bb5..042c548bd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter005Test.java index bc702a088..53f659ce7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter006Test.java index 2669ced66..9f544d7ff 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter007Test.java index 6607b03ed..90d2420fa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter008Test.java index 78f87cb1b..59a608f70 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter009Test.java index 295f60c29..f7db8d5af 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter010Test.java index 6a4690437..b1de7c1b9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter011Test.java index dab9b085e..7925e3996 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter012Test.java index 24f8fb2ad..42e293160 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter013Test.java index d579d7c9e..fb4cfdb2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter014Test.java index 05507fce6..5bbf1a051 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter015Test.java index 090f5f80b..d83078141 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter016Test.java index 7abdd703d..9081a748e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounter016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters000Test.java index 3faa7b501..8286a81b5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters001Test.java index 7420ec0b0..108fe425d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters002Test.java index 1e9d27ca0..d307d0c85 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters003Test.java index 3ab15dd5a..da59f7bc1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters004Test.java index a25f14102..f3b77f066 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters005Test.java index 74303d60a..f5945f2a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters006Test.java index 338be7b9f..278a6c677 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters007Test.java index 887001301..b90361f7b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters008Test.java index 9ad4c02c1..ee1e40b70 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters009Test.java index 7e899cf0c..fb475e24b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters010Test.java index 97db35859..f24a7d457 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters011Test.java index 0d5e94bbf..28a5fe4da 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters012Test.java index d1ff6e750..bcaa18473 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters013Test.java index 4556557d8..ef7a63d89 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters014Test.java index 8a9b6d2ff..ca23a5e84 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters015Test.java index da90a2267..ecab14a2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters016Test.java index 3fb9b8bf0..27c21c064 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters017Test.java index d72882640..3b9f37717 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters018Test.java index 71e703060..dd8ecd9f0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/generated_content/ContentCounters018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001RefTest.java index 8a52a295f..2ad64163e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001Test.java index a3e0ddc4c..6566bd09d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/BaselineBlockWithOverflow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/BaselineBlockWithOverflow001Test.java index dfa1106a5..a66e4f300 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/BaselineBlockWithOverflow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/BaselineBlockWithOverflow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/BorderPaddingBleed001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/BorderPaddingBleed001RefTest.java index a969dacc2..9406bcc05 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/BorderPaddingBleed001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/BorderPaddingBleed001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/EmptyInline001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/EmptyInline001Test.java index e526e313c..567b5024d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/EmptyInline001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/EmptyInline001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/EmptyInline002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/EmptyInline002Test.java index f0e0f8919..e0529f8d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/EmptyInline002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/EmptyInline002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/FractionalLineHeightTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/FractionalLineHeightTest.java index e3168b8dc..0f9f5edb8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/FractionalLineHeightTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/FractionalLineHeightTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineBox001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineBox001Test.java index d94c7d4dc..060d1ff38 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineBox001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineBox001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineBox002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineBox002Test.java index 3c03e7263..dc158d2c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineBox002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineBox002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext001Test.java index 701cb0edd..5693feef9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext002Test.java index 84e813536..a06cb8c4a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext003Test.java index d8bc5f750..2124c89e7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext004Test.java index 94f4a9d91..af03f5cb2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext005Test.java index 699bc8429..9abf77b54 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext006Test.java index f75c83840..baf0b19d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext007Test.java index b3422b1d7..a88e66eee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext008Test.java index 73e5c21b0..d2e1b4a8a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext009Test.java index a8064bcb8..e99d0ec5b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext010Test.java index f605162ad..dfc071fca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext011Test.java index 1b14f87d6..a2b362f7f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext012Test.java index 9d9a51cde..38da61291 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext013Test.java index 675a362b8..137d71b8e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext014Test.java index 29308b7ef..3923203bf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext015Test.java index f73889011..edd16a74a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext016Test.java index 14b129822..7f9689742 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext017Test.java index 3cfe27f2a..d66e9c1d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext018Test.java index d7e7ae71e..2c0928841 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext019Test.java index 79b035df7..0a5345f08 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext020Test.java index 15e324d46..63368388c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext021Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext021Test.java index b671e2920..9d6f412d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext021Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext021Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext022Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext022Test.java index 55f2064e2..bcaeb44a8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext022Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext022Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext023Test.java index c93a94ef1..a569894c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/InlineFormattingContext023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/Leading001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/Leading001Test.java index 1bb909219..6db7dab06 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/Leading001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/Leading001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineBoxHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineBoxHeight001Test.java index 03cc3a2a4..d1c8435d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineBoxHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineBoxHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineBoxHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineBoxHeight002Test.java index 0b1ed400b..024ff090e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineBoxHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineBoxHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight001Test.java index 816778ae6..658a55fdf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight002Test.java index 1398fbeb8..6c8612cac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight003Test.java index 8ba67e999..8e0c2d8b7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight004Test.java index 097ca19e4..1e4904e87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight005Test.java index 1e7fa63b3..04a69459f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight006Test.java index 51d20c724..60dd96d7f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight007Test.java index 6419b354d..752edd7f8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight012Test.java index 49b4d3fc7..43cc1a14a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight013Test.java index 97fa625c8..2f0177959 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight014Test.java index 6811109cc..0bcbc7c26 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight015Test.java index 12e2a16d9..1285208c2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight016Test.java index 3f1595135..17d238a97 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight017Test.java index e09b34754..e3d2d20c5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight018Test.java index 567f89cb0..8a62e8806 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight023Test.java index 15bfb4b20..5880a2f3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight024Test.java index 0026f9d39..f52701afa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight025Test.java index e56f2da22..56cf4fed7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight026Test.java index 6f94ea01a..cc6897b78 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight027Test.java index 1f917eacd..d6616c522 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight028Test.java index 958aa99b1..2cbfaae6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight029Test.java index 04b5df65d..f098648dc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight034Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight034Test.java index 85aab77b4..dbbf39d09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight034Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight034Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight035Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight035Test.java index 037e4f3c4..e6bbdfdd1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight035Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight035Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight036Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight036Test.java index 7c118dfeb..cefca03db 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight036Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight036Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight037Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight037Test.java index 8fe88d3f0..70a49064b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight037Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight037Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight038Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight038Test.java index f73e0f2d1..2f91c6870 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight038Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight038Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight039Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight039Test.java index 286dcb5a9..63c308d41 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight039Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight039Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight040Test.java index a955bbe12..1c83d82a6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight045Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight045Test.java index 49c7d262b..8b5d7aad7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight045Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight045Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight046Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight046Test.java index 74a04b431..bb6359401 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight046Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight046Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight047Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight047Test.java index fca668e14..b199e59cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight047Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight047Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight048Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight048Test.java index c361435b5..caa4693a8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight048Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight048Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight049Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight049Test.java index 1653a1148..a618a1263 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight049Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight049Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight050Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight050Test.java index 2c43fe522..e38e6a0e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight050Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight050Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight051Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight051Test.java index e0e5da41c..5776ec3f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight051Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight051Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight056Test.java index ba95bc067..fa9e8633a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight057Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight057Test.java index db256f9a8..e7aa8d689 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight057Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight057Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight058Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight058Test.java index fe39b2ab3..36ac4b492 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight058Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight058Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight059Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight059Test.java index 44623a57a..eb7785ca3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight059Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight059Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight060Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight060Test.java index ec50122ce..fa8c53723 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight060Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight060Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight061Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight061Test.java index 5925cb3a0..ec4bd2636 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight061Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight061Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight062Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight062Test.java index 4e9ea5cc7..2afa5db5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight062Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight062Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight067Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight067Test.java index b0c129e82..71bb73eaf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight067Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight067Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight068Test.java index 97b15f528..4e2a96930 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight069Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight069Test.java index 8d1631169..3cd82164b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight069Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight069Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight070Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight070Test.java index 20a2db5e8..6a7243f5d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight070Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight070Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight071Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight071Test.java index 487c0d876..50b3c2d43 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight071Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight071Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight072Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight072Test.java index 657d41c20..b0072fbc2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight072Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight072Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight073Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight073Test.java index 3a1e1a91f..3a3522b26 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight073Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight073Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight078Test.java index e1a009a6f..80c451f3e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight079Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight079Test.java index 2575d0160..6f39ca1f4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight079Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight079Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight080Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight080Test.java index 7cea8a641..308120245 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight080Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight080Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight081Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight081Test.java index 02c3eb7af..f767dcdb5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight081Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight081Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight082Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight082Test.java index ecc915af0..a8b4f11e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight082Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight082Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight083Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight083Test.java index e1cb7c816..6cca3acf9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight083Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight083Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight084Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight084Test.java index e82bd45db..ca5294694 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight084Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight084Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight089Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight089Test.java index b076bbbe9..e424c880b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight089Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight089Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight090Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight090Test.java index 587e43077..c9b6959ed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight090Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight090Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight091Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight091Test.java index b34a91d9b..e698105eb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight091Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight091Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight092Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight092Test.java index 9807bef1f..1d4465cac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight092Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight092Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight093Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight093Test.java index 08366a436..daebdf561 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight093Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight093Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight094Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight094Test.java index fbd3c1de5..7b4103ba8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight094Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight094Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight095Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight095Test.java index 1982f911a..dc8e5190c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight095Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight095Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight100Test.java index 448a786cd..b4717d27e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight101Test.java index 6aa2a533a..cbf005e46 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight102Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight102Test.java index 7a6f699fa..a299794a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight102Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight102Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight103Test.java index c94d13525..8d357191c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight104Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight104Test.java index bc76c1516..97205dada 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight104Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight104Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight105Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight105Test.java index 672777f0d..85ce70f68 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight105Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight105Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight106Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight106Test.java index f77960e63..342a6c7d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight106Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight106Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight111Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight111Test.java index 498f83d63..908dbbe4c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight111Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight111Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight112Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight112Test.java index f9ab50564..27c0ecf16 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight112Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight112Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight121Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight121Test.java index 0104b9318..a8c438a73 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight121Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight121Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight122Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight122Test.java index 59f445025..232b487f3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight122Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight122Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight123Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight123Test.java index 9dc0d6f36..a3651164d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight123Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight123Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight124Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight124Test.java index e7a3edbd6..dab970f37 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight124Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight124Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight125Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight125Test.java index 61b572a05..609457e72 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight125Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight125Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight126Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight126Test.java index f724f8951..51bf5e357 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight126Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight126Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight127Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight127Test.java index f06486e73..cb59141aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight127Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight127Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight128Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight128Test.java index 7b1b0a12e..8a7c7f901 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight128Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight128Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight129Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight129Test.java index 6aaab0945..94200d9c5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight129Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeight129Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo001Test.java index ceb08ab17..7c3ce80cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo002Test.java index 227732b42..fc1406a72 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo003Test.java index 283ed340d..22d3ef099 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo004Test.java index 6ca35f844..0372d43d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo005Test.java index 71b39241b..7bbdd99ff 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo006Test.java index 7d1eaeebf..d9328eeb8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo007Test.java index ee4389b51..b001d055c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo008Test.java index fe77671e6..bd60462e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo009Test.java index f696f6451..57ccf4749 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo010Test.java index c5bd964dd..d5f7e6c36 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo012Test.java index 9c9f9cb2c..ded73afb5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo013Test.java index 0154221dd..44543c21f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo014Test.java index a5660fbe2..bb64ef88a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo015Test.java index 231c16c10..4b645f026 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo016Test.java index 696e8fd35..1e822c44d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed001Test.java index 9e0fcc6c6..163cb53b4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed002Test.java index 764c296eb..3cd9415de 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed003Test.java index 08282f0d5..4f93df8a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightBleed003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightLargest001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightLargest001Test.java index 8e6367836..9d3747a78 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightLargest001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightLargest001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightNormalRecommendation001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightNormalRecommendation001Test.java index 8466c90be..2a9926e6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightNormalRecommendation001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightNormalRecommendation001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightOofDescendants001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightOofDescendants001Test.java index 9e2af69a9..e8ed129fc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightOofDescendants001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/LineHeightOofDescendants001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/ScrollableOverflowTentativeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/ScrollableOverflowTentativeTest.java index 4ac224f23..020b13a48 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/ScrollableOverflowTentativeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/ScrollableOverflowTentativeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign004Test.java index 3bcdf6e64..2d5b95d53 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign005Test.java index 2df10bcd2..0accdc0a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign006Test.java index e0fc6bc38..ea3405bef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign007Test.java index 3d843061a..c11709cd2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign008Test.java index c57504cc9..6ef52a959 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign016Test.java index eae401d42..6808af2be 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign017Test.java index ed90f797c..0302026f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign018Test.java index 2c25362b6..4c9c52417 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign019Test.java index 48ec73a25..d9bf033b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign020Test.java index 735737448..f460fb38c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign028Test.java index 07ca87f31..cd5d17621 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign029Test.java index 4703eca9e..516addc2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign030Test.java index 9f48e4417..10cc7acc4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign031Test.java index 2379fc018..d32fbc38e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign032Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign032Test.java index df73fcabe..4b48168e8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign032Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign032Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign040Test.java index d29cfa8e9..60290efaa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign041Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign041Test.java index ebb792053..f9a5c79a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign041Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign041Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign042Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign042Test.java index a1bf464d0..2d31db593 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign042Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign042Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign043Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign043Test.java index f9ef940b9..cc789c6e3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign043Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign043Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign044Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign044Test.java index b3bf2e417..c5d54cb99 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign044Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign044Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign052Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign052Test.java index a23fe327e..93ab6f1c8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign052Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign052Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign053Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign053Test.java index 7f5b61824..cb8b5f479 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign053Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign053Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign054Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign054Test.java index f2212413f..23cbc3a2d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign054Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign054Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign055Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign055Test.java index b26bed749..de5297e23 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign055Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign055Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign056Test.java index 8783e93af..391f45ca8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign064Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign064Test.java index f11c8039d..3aff997b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign064Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign064Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign065Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign065Test.java index 9ef00caf0..e761527f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign065Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign065Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign066Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign066Test.java index 66f38b1fd..dc1283593 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign066Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign066Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign067Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign067Test.java index 92fc6c4ca..779930f15 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign067Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign067Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign068Test.java index e8eadb810..31367a31d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign076Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign076Test.java index 3fde02772..0e089747d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign076Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign076Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign077Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign077Test.java index 6d0fa501f..56efa6159 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign077Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign077Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign078Test.java index d58be13c2..00e23ea36 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign079Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign079Test.java index 4786f0062..8ed24e958 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign079Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign079Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign080Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign080Test.java index 345031a22..d9c2c0109 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign080Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign080Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign088Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign088Test.java index de841873f..d0ef749c0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign088Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign088Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign089Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign089Test.java index 9ebb6fac1..9d2140427 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign089Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign089Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign090Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign090Test.java index 37602fde0..5dc4f9187 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign090Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign090Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign091Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign091Test.java index 8a7f41dcd..ca2606612 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign091Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign091Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign092Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign092Test.java index 2e3f55449..25df9ea8f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign092Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign092Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign100Test.java index 5096c6b3b..8204c435e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign101Test.java index af9250958..fd2c8f6a2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign102Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign102Test.java index 4877ea456..09844ca88 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign102Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign102Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign103Test.java index 639e625b9..ea2bb5aae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign104Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign104Test.java index 25f2f9fb2..5caf251f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign104Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign104Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign109Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign109Test.java index c33c9ac83..cbc8bf748 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign109Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign109Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign110Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign110Test.java index b84d47c15..c500d7a7b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign110Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign110Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign111Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign111Test.java index ffeb7bff6..cdf5e390c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign111Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign111Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign112Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign112Test.java index dc6a488ac..c6b867d19 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign112Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign112Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign113Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign113Test.java index 085470cea..4e923f77c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign113Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign113Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign114Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign114Test.java index 3b892e2e6..eea464dd2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign114Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign114Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign115Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign115Test.java index 9dff308d1..a0dcaba03 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign115Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign115Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign116Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign116Test.java index 92b35f4f7..a6af3ad58 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign116Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign116Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign117Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign117Test.java index b88cc941f..ffce1dd74 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign117Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign117Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign118Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign118Test.java index e309013ce..019a7d743 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign118Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign118Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign119Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign119Test.java index 15a6fd499..b1d4f10a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign119Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign119Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign120Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign120Test.java index 216a6c391..2389495d0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign120Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign120Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign121Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign121Test.java index 60976f62b..f4d193d70 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign121Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlign121Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo001Test.java index 7241ee6a0..397b80178 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo002Test.java index 4a4dedbd0..ed0a554f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo003Test.java index 839be05fc..e272281cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo004Test.java index e87904571..8cc496036 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo005Test.java index c463ee6eb..dd39c4119 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo006Test.java index e4832a234..6d29bf86c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo007Test.java index 3c740f7c8..644448207 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo008Test.java index 4af3ebe7b..9497e97c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo009Test.java index 1f316eda9..cc4b4ba51 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo010Test.java index b53fa2807..703771ff5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo012Test.java index 99414f8bd..d445fe32b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo013Test.java index b8aae6cd0..b527c6d2a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo014Test.java index 7402de54e..376cb6aeb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo015Test.java index df4cebd9a..20112a241 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline001Test.java index 9bea0cd6d..fa1521697 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline002Test.java index 4ada1154c..8c91bb93a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline003Test.java index 3cf8cb38c..c085b2dcf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline004Test.java index 00738740a..b0a91cf54 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline005Test.java index 92b9ef03a..71dc9dba0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline006Test.java index e34690655..d96c97712 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline007Test.java index 5d79a1c4d..94a0436ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline008Test.java index 2cbb1f795..7f43b11c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline009Test.java index d9545abaf..68788f140 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline010Test.java index b8fd412bd..0d3a4e496 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBoxes001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBoxes001Test.java index 0cad05947..e854ae2f5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBoxes001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignBoxes001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001RefTest.java index 238623afd..c23fee313 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001Test.java index ab967c4fa..621ed789a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001RefTest.java index a369fd44b..1ef72aecf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001Test.java index 233e66452..183b68a66 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignSub001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignSub001Test.java index 390f105c5..a82441c99 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignSub001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignSub001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignSuper001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignSuper001Test.java index b81b2eeba..9c252ce8e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignSuper001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignSuper001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignTopBottomPaddingTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignTopBottomPaddingTest.java index f3d9b531f..71f42d2c3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignTopBottomPaddingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/linebox/VerticalAlignTopBottomPaddingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement003Test.java index a8f53fb70..962ed96ce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement004Test.java index 11416f802..43deddab1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement005Test.java index 84eb14c34..23ff74960 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement006Test.java index 90edc90ff..61332ba14 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement007Test.java index fbf6be7bd..3da23da24 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement008Test.java index 85c22a733..a71edbe61 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement009Test.java index 1e958ad93..fc2b4bd32 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement010Test.java index 98ee17bc8..a7edd4188 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterIncrement010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset003Test.java index 9dd78ca94..50e63f449 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset004Test.java index 1882ab47d..dabadba32 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset005Test.java index e856c59d3..3568729e7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset006Test.java index 3cefd0a47..d21f2dd95 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset007Test.java index 115dc696b..31753608f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset008Test.java index 4f8e22164..623e6820d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset009Test.java index 8b49c8588..f476c1373 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset010Test.java index 5ad510a74..891b444e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/lists/CounterReset010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock000Test.java index 6d485ca05..1ff58cff9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock001Test.java index cfc835619..264fc3e45 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock002Test.java index 93be26860..67851f285 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock003Test.java index fea61c831..ac8a0818f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock004Test.java index cfcb8fb58..d9d8bd334 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock005Test.java index 05f966827..47ffa3a0d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlock005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight001Test.java index edc3ec355..853acdfdb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight002Test.java index f2080a1dc..24e7d1de2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight001Test.java index f07876b2a..168a83349 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight002Test.java index b31dc67b4..1c4884563 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight001Test.java index d90564fc5..1b7160fea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight002Test.java index bd658dd09..ece540b27 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight003Test.java index 6c4b38c4f..f0051545a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth001Test.java index c0a09d39b..b842ccf0b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth006Test.java index 2f20852c3..7d4cd5d03 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001ATest.java index 4ba449e8a..ccc9e8d33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001BTest.java index d811f3ead..5f6b93361 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002ATest.java index 0164a0595..1f28dd2d5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002BTest.java index 504dd37cd..61cebed8e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth001Test.java index d0bc8fd8c..cf772bba7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth002Test.java index 13f57d224..a1a6ab1b0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth003Test.java index 58108e662..6ed2ed13d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth004Test.java index b49459e85..4436653a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth005Test.java index 4dc13de98..8fb57b4fc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth006Test.java index ec5cade31..028c3092b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth007Test.java index 5318a534c..4f471247b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth012Test.java index 5d5e381b6..24d30b38f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth013Test.java index 2832bdf4d..95935ab44 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth014Test.java index 51473daa9..34c1ba027 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth015Test.java index ac9a982cd..8ae738836 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth016Test.java index f9e4f43b6..7dbe0facb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth017Test.java index 9afb8bc76..4b42ab132 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth018Test.java index eab71151e..e56c78c69 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth023Test.java index 3f99de4f0..184766c47 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth024Test.java index 282fcb558..c547d82c8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth025Test.java index f081cf1ab..a33cbc590 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth026Test.java index 7549d4399..7866dcc95 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth027Test.java index 02591a511..2deefb24a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth028Test.java index 3ffe84034..d3e280c2d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth029Test.java index 39b10268d..afabe0ff0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth034Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth034Test.java index b3e992b3c..cef049536 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth034Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth034Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth035Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth035Test.java index dd2299b10..80e29b6a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth035Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth035Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth036Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth036Test.java index 819592a2b..d4484393f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth036Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth036Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth037Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth037Test.java index 1b444e9ea..af04658c0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth037Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth037Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth038Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth038Test.java index 84afe85e8..7bc173cf9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth038Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth038Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth039Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth039Test.java index eb1288a10..5e2060c38 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth039Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth039Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth040Test.java index 6629c979b..64c09830c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth045Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth045Test.java index 6e5e11420..9bac8533f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth045Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth045Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth046Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth046Test.java index b10f7eb8e..837857d3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth046Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth046Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth047Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth047Test.java index 5fc0b0803..f0922ddb7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth047Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth047Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth048Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth048Test.java index 178d69223..229dc5ef9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth048Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth048Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth049Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth049Test.java index 7f06c2b5f..832432f49 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth049Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth049Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth050Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth050Test.java index f307d65ba..6dc1edffb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth050Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth050Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth051Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth051Test.java index 3dd075cff..e2cb68bcf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth051Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth051Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth056Test.java index f0510ca06..0d23b7df0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth057Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth057Test.java index f4b381f20..bff3deddd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth057Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth057Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth058Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth058Test.java index e523d3b04..9156ecb92 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth058Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth058Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth059Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth059Test.java index 6e07e8d8f..637d3a8b0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth059Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth059Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth060Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth060Test.java index ff581e70f..76ad521d5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth060Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth060Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth061Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth061Test.java index 0ff206f04..13bc8b5e7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth061Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth061Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth062Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth062Test.java index ab62b8799..5e35c9c37 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth062Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth062Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth067Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth067Test.java index 4a845aa29..2447c13cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth067Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth067Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth068Test.java index 7ff064401..fabbcc9d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth069Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth069Test.java index 6231b6992..85c6793a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth069Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth069Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth070Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth070Test.java index 1df4bce7f..4c7141102 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth070Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth070Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth071Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth071Test.java index ea1eecf85..5feaaf8f0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth071Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth071Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth072Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth072Test.java index d987e1caa..3577486c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth072Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth072Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth073Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth073Test.java index f757ec383..e79ce90b3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth073Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth073Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth078Test.java index f5690f9ac..7b37fbdfd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth079Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth079Test.java index 023c02e87..8dbcb92b9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth079Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth079Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth080Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth080Test.java index c1155185d..64db8503d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth080Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth080Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth081Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth081Test.java index a41c5a93a..d66653ed4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth081Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth081Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth082Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth082Test.java index 90de5a5d1..6c722620d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth082Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth082Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth083Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth083Test.java index 389b246fe..1e0c40770 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth083Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth083Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth084Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth084Test.java index eebe9d8ac..00d6c61f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth084Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth084Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth089Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth089Test.java index 01794e640..bc4b3b353 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth089Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth089Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth090Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth090Test.java index d1aebeb21..ae88f0f2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth090Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth090Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth091Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth091Test.java index c3dc44e1a..426ef2d9c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth091Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth091Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth092Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth092Test.java index 8b86f22f7..84af63727 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth092Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth092Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth093Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth093Test.java index 7e68d1103..5332e4cfe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth093Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth093Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth094Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth094Test.java index c6e91d2ad..07433ba79 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth094Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth094Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth095Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth095Test.java index 32cd402ad..e51280317 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth095Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth095Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth100Test.java index 47eb27db8..0fde3d421 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth101Test.java index dbe405cba..a8a61b2c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth102Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth102Test.java index 6a89273ef..5e1617ef8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth102Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth102Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth103Test.java index 9823e3eb8..6253e61bb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth104Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth104Test.java index 3bf785d80..1f99e3e49 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth104Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth104Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth105Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth105Test.java index 4da437aff..bca5b888c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth105Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth105Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth106Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth106Test.java index 2e57629d0..a645f2d4f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth106Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth106Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth107Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth107Test.java index 0d63bfeba..04a3a3ea6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth107Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth107Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth108Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth108Test.java index a0ed52dfb..7105bac0e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth108Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth108Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth110Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth110Test.java index f84d5b4f2..01f8c0d29 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth110Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidth110Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo001Test.java index 7e3af2196..7c5c78b80 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo002Test.java index 1d5e6b90b..c1c6f51ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo003Test.java index 1438a2ee4..785e7efba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo004Test.java index 3ba6b364f..f93155371 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo005Test.java index c1b34dc1e..86660c95f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo006Test.java index bdb4bb460..a9b937347 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo007Test.java index 1c08470e2..70434c892 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo008Test.java index 60df7c743..86d1fd215 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo009Test.java index 7bd216196..6a42bb827 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo010Test.java index db0884e82..e98a19e2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo012Test.java index 9551ec846..9554c458c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo013Test.java index 1cfefed33..02330bcde 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo014Test.java index 44decaf50..3b7f3f635 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo015Test.java index 672c2fc60..118b129cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo016Test.java index 19d2975b8..1c29fa74d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage001Test.java index a5b08a2f8..6a71dbcee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage002Test.java index 24ea9379b..f5cf0712a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage003Test.java index e343be985..d7003cb3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth001Test.java index 138a9a582..778a34993 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth002Test.java index 1f8c25199..861125bf7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth003Test.java index 085fbc057..f8c9fce39 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth004Test.java index b69436c80..d09e38a5f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth005Test.java index 6f21e8144..9aede57f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth006Test.java index 6f6507e51..7fcae194d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth007Test.java index a1beb53d7..60555c2cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth012Test.java index ec5a31d5e..106e0ba91 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth013Test.java index 495880396..9bf61cebe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth014Test.java index bd67512de..94f10c72c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth015Test.java index e3677fb30..ab8e4f25b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth016Test.java index a0558d8f8..ad4d5dbba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth017Test.java index aad667da8..40488e988 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth018Test.java index fb3e8c33d..f8f16eda8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth023Test.java index 0391b081e..431903633 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth024Test.java index 340a1648d..202d59012 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth025Test.java index ebfdf6818..8926b473d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth026Test.java index 17ab0efcc..01066c766 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth027Test.java index 44f21ad59..43ed00cde 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth028Test.java index b41bdfcf2..f6d6a8166 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth029Test.java index a92e02563..85952961a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth034Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth034Test.java index b83a1c2e5..a2b2bcf45 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth034Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth034Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth035Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth035Test.java index cb971943c..d8e89b7b0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth035Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth035Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth036Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth036Test.java index 37dc21745..887859b63 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth036Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth036Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth037Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth037Test.java index 52dc9d57b..1e80ae4dc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth037Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth037Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth038Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth038Test.java index 56af0e922..1a1690c9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth038Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth038Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth039Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth039Test.java index 52ac7344d..9b0fb9bf3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth039Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth039Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth040Test.java index f51857a0c..701598162 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth045Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth045Test.java index c797ea970..0cd96198d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth045Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth045Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth046Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth046Test.java index c9f6ce892..64e9aad96 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth046Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth046Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth047Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth047Test.java index 60e52ff2c..77dbd9487 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth047Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth047Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth048Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth048Test.java index dee9aa978..2b1457fe4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth048Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth048Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth049Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth049Test.java index c3e816d74..f5eadc92d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth049Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth049Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth050Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth050Test.java index 17d1f128d..627c9c91c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth050Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth050Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth051Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth051Test.java index aac530015..5b96d7410 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth051Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth051Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth056Test.java index bf97dc5bd..1f41e68cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth057Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth057Test.java index 8be63a17e..2cdf8a54f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth057Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth057Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth058Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth058Test.java index 9f970dcc1..8d34645cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth058Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth058Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth059Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth059Test.java index eeafa156a..ff075da2a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth059Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth059Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth060Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth060Test.java index 3e4dbf490..25ef1f086 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth060Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth060Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth061Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth061Test.java index 3cd61ee84..031cd3468 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth061Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth061Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth062Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth062Test.java index a2730b111..3e651dc2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth062Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth062Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth067Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth067Test.java index 9c407ea91..2cf900da5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth067Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth067Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth068Test.java index 98f583604..aa976f7fe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth069Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth069Test.java index 9247eb166..3576c67d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth069Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth069Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth070Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth070Test.java index b0a212d6e..651ac2da7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth070Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth070Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth071Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth071Test.java index 21fb074f8..3ff8a6fea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth071Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth071Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth072Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth072Test.java index eac774271..c3ae10972 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth072Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth072Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth073Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth073Test.java index fbe1df66b..7244faa3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth073Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth073Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth078Test.java index ab3ca11de..45e1947bb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth079Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth079Test.java index 7e2cfd3e9..ed5f84dea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth079Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth079Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth080Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth080Test.java index 9f62744df..a16c520ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth080Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth080Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth081Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth081Test.java index 12b4ab0d8..1c745dc0c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth081Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth081Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth082Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth082Test.java index aaba7a8df..53eb87dde 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth082Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth082Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth083Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth083Test.java index f96a7886a..80f38943f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth083Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth083Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth084Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth084Test.java index 9e385e61e..9fb3e68e7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth084Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth084Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth089Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth089Test.java index c38c529ea..6c7b7cbc3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth089Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth089Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth090Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth090Test.java index 96c121189..46c85487f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth090Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth090Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth091Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth091Test.java index b8542108d..3e5ea1b26 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth091Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth091Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth092Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth092Test.java index ce6e419ef..5a36e22e9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth092Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth092Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth093Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth093Test.java index c3b8bc593..9842b1291 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth093Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth093Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth094Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth094Test.java index 1289f725f..92128ff6f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth094Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth094Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth095Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth095Test.java index d467103bb..11e9a14c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth095Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth095Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth100Test.java index ad80cc6cc..576a2a857 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth101Test.java index 51fa1dc7b..b5bbaa9d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth102Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth102Test.java index 30767575f..8f5b82e75 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth102Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth102Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth103Test.java index 52193a774..b4a5e48d0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidth103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo001Test.java index 840cb5eba..547e9de96 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo002Test.java index 813fcc31c..9d5f7c45a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo003Test.java index fe2cd5cc6..1d05a06f8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo004Test.java index d51b1c21b..c387c75c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo005Test.java index ca478181d..068401c51 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo006Test.java index 5deb6bfbd..187a20829 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo007Test.java index d04c4efb1..402d261e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo008Test.java index 73f2417eb..2fade37c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo009Test.java index 17bc97b4c..f609e8590 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo010Test.java index 63c7ce296..490c39d98 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo012Test.java index c18caccb8..d19b1f682 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo013Test.java index 98c8e4d4c..ebc37427b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo014Test.java index 54993e80a..19cca5fdb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo015Test.java index 1fe1b7561..dcaddde08 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo016Test.java index 7efd5ffea..2f77be099 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage001Test.java index 000e685e1..38dd63349 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage002Test.java index 91fdaa926..0fed1fce4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage003Test.java index 40116c45c..84c77c5e4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width001Test.java index 4407b7573..b25285717 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width002Test.java index a5c214b88..74f476631 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width003Test.java index c8abe4cb6..cb1e363cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width004Test.java index 232831608..3e8ed1d65 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width005Test.java index 506d84c62..29dd8a5e5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width006Test.java index 99cb0e1f8..8b4c90e1e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width007Test.java index 5ebb60d38..4536ee5c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width012Test.java index 71fb23f6a..d9c0b6a1b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width013Test.java index ddc20b4ac..9fb9c53a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width014Test.java index f365f780a..61128e4f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width015Test.java index a10a11159..27c4c968e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width016Test.java index 56f07b197..20be71a83 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width017Test.java index f159d9456..f826c7a7a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width018Test.java index 871e3b727..aa3b999c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width023Test.java index f2c6f3edd..99c9b4002 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width024Test.java index 5d09f5c7a..5d6cfc9cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width025Test.java index 1abe0fc3b..436413529 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width026Test.java index d09f375bc..922fc2277 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width027Test.java index 81aa5f109..7d56d136a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width028Test.java index 4885a9869..c025f5d6b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width029Test.java index 79038e5ca..1fe5c107e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width034Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width034Test.java index 502dceaa9..64ed90de3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width034Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width034Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width035Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width035Test.java index a5b39e5cb..70a8b47aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width035Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width035Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width036Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width036Test.java index 39e92eddc..cb1c63b2b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width036Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width036Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width037Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width037Test.java index b31098783..9376daa33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width037Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width037Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width038Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width038Test.java index 755589e57..fdfb8b2d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width038Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width038Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width039Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width039Test.java index b2cc3c164..3da2e20d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width039Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width039Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width040Test.java index 8ca96e70e..6ae605eee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width045Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width045Test.java index 89054e6fc..8ab852fb2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width045Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width045Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width046Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width046Test.java index 1e01a99ee..4f13418d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width046Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width046Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width047Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width047Test.java index aa5fd9200..560ccf30f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width047Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width047Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width048Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width048Test.java index 9e248cdfa..11a388c9b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width048Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width048Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width049Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width049Test.java index 9d67c302c..44eaf20f8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width049Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width049Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width050Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width050Test.java index 302430e20..5c30db6a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width050Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width050Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width051Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width051Test.java index 787c28f06..6620a12dc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width051Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width051Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width056Test.java index ad1179383..bb722f0d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width057Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width057Test.java index e88bc26c5..9691c4b81 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width057Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width057Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width058Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width058Test.java index fe317409b..a5321c456 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width058Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width058Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width059Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width059Test.java index ac09dbb6b..3441cc81a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width059Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width059Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width060Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width060Test.java index f4d84fb78..cc7ce67fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width060Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width060Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width061Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width061Test.java index 61137bc0a..9bdd196ad 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width061Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width061Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width062Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width062Test.java index 537ed26b9..be424aced 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width062Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width062Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width067Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width067Test.java index 9bc28fda3..7d99a98c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width067Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width067Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width068Test.java index 5fb48df26..b5fad6139 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width069Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width069Test.java index 105a1d916..a68f3ee2e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width069Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width069Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width070Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width070Test.java index 1979bd32a..d66e482ff 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width070Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width070Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width071Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width071Test.java index 90a950070..962b814ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width071Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width071Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width072Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width072Test.java index 7b8f49a63..778ad7660 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width072Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width072Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width073Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width073Test.java index cad051724..d52761421 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width073Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width073Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width078Test.java index 72cd34853..31271e552 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width079Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width079Test.java index a59b0c6e2..9dd45c1fa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width079Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width079Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width080Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width080Test.java index b35528828..00b396dd9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width080Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width080Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width081Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width081Test.java index 5ed223220..19cf5b0cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width081Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width081Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width082Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width082Test.java index db1ac888f..8db413f97 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width082Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width082Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width083Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width083Test.java index a679cf4b1..02e587822 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width083Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width083Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width084Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width084Test.java index 4aad91793..8412b417f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width084Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width084Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width089Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width089Test.java index 72918ad1c..96b3479f4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width089Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width089Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width090Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width090Test.java index b55bba309..235c0e0d4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width090Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width090Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width091Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width091Test.java index 56ed9328f..9862a2d6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width091Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width091Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width092Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width092Test.java index 78332fb84..097a3b567 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width092Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width092Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width093Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width093Test.java index 28a5c5889..84fd1cf0b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width093Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width093Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width094Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width094Test.java index 283c47ad9..0a207a3ec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width094Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width094Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width095Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width095Test.java index e0fc34b2e..f9354e402 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width095Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width095Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width100Test.java index 31cebcb29..50e76c9c8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width101Test.java index 6141899f8..c1d842401 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width102Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width102Test.java index 0295924f7..be16a4015 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width102Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width102Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width103Test.java index fa775b31b..0d245c6d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width104Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width104Test.java index e5ff188e1..df4e7959c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width104Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/Width104Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo001Test.java index 5ac15d9b2..153ee1edb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo002Test.java index 3939b40a5..caebf720e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo003Test.java index c7e4c5254..08dabae02 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo004Test.java index bb0ecefbf..d9c15048a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo005Test.java index fec5707db..1cd14668d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo006Test.java index a8347f9ed..6c93a9cc5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo007Test.java index b01f7d1b1..54fbc437d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo008Test.java index 2f74eeaf7..495050631 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo009Test.java index 6a66841aa..4ae9aa662 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo010Test.java index 579660fbb..bff2c5041 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo012Test.java index bb59f7fe0..bf408acb3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo013Test.java index c79538131..c8b73404e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo014Test.java index 103093bcf..ff9dc8589 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo015Test.java index 69d3b2d38..7be416431 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo016Test.java index 4687d12cc..953a7e7af 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthInherit001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthInherit001Test.java index 5cbc48081..122508e36 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthInherit001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthInherit001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthNonReplacedInline001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthNonReplacedInline001Test.java index c9159fdfa..4406dce46 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthNonReplacedInline001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthNonReplacedInline001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthPercentage001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthPercentage001Test.java index 4d2b501b2..18cadc4f0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthPercentage001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthPercentage001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthPercentage002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthPercentage002Test.java index a1a56183b..6cfb51f06 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthPercentage002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthPercentage002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthReplacedElement001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthReplacedElement001Test.java index 69988f88b..14bd7961b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthReplacedElement001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthReplacedElement001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthUndefined001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthUndefined001Test.java index fa27c9f2d..82f93f301 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthUndefined001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/normal_flow/WidthUndefined001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter000Test.java index 546a60c26..049e4e00d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter001Test.java index e94315727..f8cc5d6e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter002Test.java index 156e539a6..584cea6e3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter003Test.java index e19d6dfba..7c3ea34d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter004Test.java index bb5276597..1d0fa8872 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter006Test.java index c1a514fc6..fe6b1c8c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter010Test.java index 995624071..a446b9944 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakAfter010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore000Test.java index edd29096b..b1c708537 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore001Test.java index 8a9fdd84b..d6162bdde 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore002Test.java index 16409037f..3fd2d0c7a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore004Test.java index 5a6362ddc..0070ebe68 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore005Test.java index bbba5a99f..97846fc32 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore006Test.java index 7f56d97a4..46b2de84d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore008Test.java index 97e65ca4d..19944af7f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore020Test.java index f9de12b2a..d88c31ed8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakBefore020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakMargins001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakMargins001Test.java index dee60fa69..7a2af2e23 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakMargins001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakMargins001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakMargins002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakMargins002Test.java index b7785d029..108971311 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakMargins002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreakMargins002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreaks100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreaks100Test.java index 8ad97571f..f38a2ba5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreaks100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreaks100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreaks101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreaks101Test.java index db9b8acb3..e49990e2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreaks101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/pagination/PageBreaks101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight001Test.java index 5c3cd4389..aa61c51f8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight004Test.java index c4a370156..44be27c31 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight010Test.java index 904271b12..5db6abb9e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight011Test.java index f1168730a..a2669a14e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight012Test.java index 9feec3775..6b1d99168 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight006Test.java index b1784f354..2b485e76c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight010Test.java index c225164cb..4ebef4a82 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight012Test.java index aaea28f22..7a1835075 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth015Test.java index e18108fae..ae735e833 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth017Test.java index cb3b8977b..5318d6c5f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth018Test.java index ce6231dec..fa9544796 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth019Test.java index e8ec20c75..68fab6985 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth021Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth021Test.java index 67afee0ca..c69d288d4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth021Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth021Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth022Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth022Test.java index 093ff45c2..64c4d329e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth022Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth022Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth023Test.java index f3d6769ac..ca0b3a4c8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteReplacedHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteReplacedHeight001Test.java index 5c835d6e8..24d8c9976 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteReplacedHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsoluteReplacedHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Abspos027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Abspos027Test.java index bacfb9030..974707a6e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Abspos027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Abspos027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock001Test.java index 62dc2e0dd..c1efa9abe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock002Test.java index 4a8717d59..8479885cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock007Test.java index 1178ceabe..3c9a2fe8f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom004Test.java index 1d9765516..3e32fc961 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom005Test.java index 14f71a66a..86d20683c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom006Test.java index 10e2b81b2..27bcf0f50 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/Bottom006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute001Test.java index 5da0e9608..e149c6730 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute002Test.java index f01491c7e..e8601ea4f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute003Test.java index 7adad8ece..defbc60cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute006Test.java index 055a9c108..45bcc7960 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute008Test.java index ad3415fd1..58479bc25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionAbsolute008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative001Test.java index 3a8278f98..6e111de32 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative002Test.java index d45b33bb1..789bd2b93 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative003Test.java index 2db26707e..1fc5f4708 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative004Test.java index 9906dfd10..a2d076314 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative005Test.java index 83c449088..5f1a2a55c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative006Test.java index 73a60a17e..a4bf10a0d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative009Test.java index 553d98b90..a8b64fac5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative010Test.java index eb1b98476..f07a61535 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative013Test.java index b1898f4a8..3ea144c4b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative014Test.java index c5a6bafed..2126975b7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative015Test.java index 4d721d646..1b00a1c2a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative016Test.java index 982687cbd..904caabe0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative017Test.java index 2a68674cc..5da0bf3ad 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative019Test.java index 80e2c49e6..62aaf7555 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative027Test.java index b0e60710a..3a936dc7b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative028Test.java index 771fcac9d..8f51f9071 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative029Test.java index af725c029..7e4b66fe2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative030Test.java index 7a2203538..b69566eba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative031Test.java index e26bea258..5a87e07a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/PositionRelative031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/TopOffset003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/TopOffset003Test.java index f6004b9ee..099ed6d41 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/TopOffset003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/positioning/TopOffset003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign001Test.java index c6bd4f3e1..f3b33c0af 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign002Test.java index ee1823a93..0bae84372 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign003Test.java index 1c5a69e11..1a3684ff9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign004Test.java index b40572068..5c29800ee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign005Test.java index 78ac1279c..f995d8826 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlign005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo001Test.java index 2bbf3b7e8..553a3dc1c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo002Test.java index 66ff2fb64..34db70b05 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo003Test.java index 519980579..c58af1386 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo005Test.java index fb9beb6d9..5a252811c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo006Test.java index 12476a559..fb0a474f1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo007Test.java index ce3a15938..5c87d9d72 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo008Test.java index 4d647772b..0068d1278 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo009Test.java index b12123a54..00200d69f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo010Test.java index 5eb52470b..8f1211b85 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo011Test.java index 6bd08fc4f..0900449ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo012Test.java index db9446472..8c871e18e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo013Test.java index 4b9e1af85..42ca7270f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo014Test.java index 9a126ac86..ea2d5b572 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo015Test.java index f655133b8..2e5d55bfc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignInherit001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignInherit001Test.java index 0763ea4c2..566a77b5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignInherit001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignInherit001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace001Test.java index 147ba2121..d1d65491a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace002Test.java index c1c9248b5..210f2d5ef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace003Test.java index 883fa4b13..369ec49bd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace004Test.java index c2ccc2ab2..17f139a33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent004Test.java index 058372d57..0b206ef34 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent005Test.java index f2626150b..59f204f6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent006Test.java index 241ff0368..8363e97b5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent007Test.java index 1d5d6aff8..ef6991fa2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent008Test.java index fb0c6e4bd..8ea07ac09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent010Test.java index 12dc341f4..4e0e68579 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent011Test.java index 35d07e9e9..0f186c0eb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent012Test.java index 48f911abd..ba0e9e5db 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent013Test.java index 10097cd12..01e225da4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent014Test.java index 966a2a091..f269389a2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent016Test.java index 73789c333..5956adfed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent017Test.java index 5a85dcff0..4717bee99 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent018Test.java index c83d73344..0fa0a51c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent019Test.java index eb9bcc07e..f25d51f44 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent020Test.java index ce90a048b..906dff934 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent028Test.java index e721ea1cb..43f9ad186 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent029Test.java index 6bb0bad5b..7e50b7a43 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent030Test.java index d3945c95c..0cdfd0210 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent031Test.java index 80148c6c6..70be78c92 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent032Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent032Test.java index 31cf56445..ad08fdc2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent032Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent032Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent040Test.java index 2f28e895a..df153ba58 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent041Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent041Test.java index bfd91a911..a82075e4e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent041Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent041Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent042Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent042Test.java index 73b834307..bb0cad284 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent042Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent042Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent043Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent043Test.java index d4dcea1ff..13e7df74e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent043Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent043Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent044Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent044Test.java index dd15d2aef..00b4bd510 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent044Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent044Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent052Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent052Test.java index 6a9c6bddc..2a04851df 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent052Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent052Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent053Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent053Test.java index d930867f2..a4a2e0f15 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent053Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent053Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent054Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent054Test.java index d2bc8a190..d74cb121b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent054Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent054Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent055Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent055Test.java index af301dd8c..41cb80de3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent055Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent055Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent056Test.java index 951157759..1dc75a544 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent064Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent064Test.java index 159cc9c35..98e680c1f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent064Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent064Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent065Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent065Test.java index 762a6d042..6b740bef0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent065Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent065Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent066Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent066Test.java index 2cd5cbd18..a40ec8492 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent066Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent066Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent067Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent067Test.java index a8f1b0930..8c894c96f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent067Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent067Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent068Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent068Test.java index 6daf58c90..dccf63a48 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent068Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent068Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent076Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent076Test.java index 594f930b5..ab318fdb6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent076Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent076Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent077Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent077Test.java index 439143537..9fc849e0c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent077Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent077Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent078Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent078Test.java index b49de3c28..49d0c504b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent078Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent078Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent079Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent079Test.java index 0484592c6..70f824304 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent079Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent079Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent080Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent080Test.java index df0d68668..8212f1446 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent080Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent080Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent088Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent088Test.java index 7b6f1fc46..b5d4b4d6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent088Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent088Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent089Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent089Test.java index 986dee6ca..1ff87326f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent089Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent089Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent090Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent090Test.java index 7ef42fd5a..6c840aa35 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent090Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent090Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent091Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent091Test.java index 5b1ca6e5c..e4871296a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent091Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent091Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent092Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent092Test.java index 31e015c9d..341936dec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent092Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent092Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent100Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent100Test.java index 7944db46c..280e26e98 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent100Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent100Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent101Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent101Test.java index 2e1e0529a..fd241e5fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent101Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent101Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent102Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent102Test.java index 8e142bbfa..8f85d036b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent102Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent102Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent103Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent103Test.java index 2ee7e1356..67e4339ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent103Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent103Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent104Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent104Test.java index 928e40dc7..21c4ce75a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent104Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent104Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent109Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent109Test.java index 429d63f49..35f51497e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent109Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent109Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent110Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent110Test.java index cdc05fc07..fd5f66a2b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent110Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent110Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent111Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent111Test.java index 9a057f761..5b62bab2d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent111Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent111Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent112Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent112Test.java index 01aa0795f..47daee97c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent112Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent112Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent113Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent113Test.java index e30513a1e..6adb545b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent113Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent113Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent114Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent114Test.java index 309d4f366..015e42289 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent114Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent114Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent115Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent115Test.java index cc4d2b4ea..18f1d3b4a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent115Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndent115Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo001Test.java index 4e851d983..56d85f894 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo002Test.java index 4effcd39b..75ce75e41 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo003Test.java index 3e21dff45..b7e79397d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo005Test.java index e4d1e79a1..1eed5b721 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo006Test.java index fda0651ff..e952760a3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo007Test.java index bd4d01638..e49988de6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo008Test.java index 22c760247..e466ecd19 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo009Test.java index 4fe6da1bf..10012b93b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo010Test.java index 5cc63e31b..c38eb872f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo011Test.java index c15b90f9e..4a23f5bdd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo012Test.java index 627b08777..39af793cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo013Test.java index 88af35e54..85ee9fa60 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo014Test.java index 0ffd029ac..738ceebd8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo015Test.java index 16a484593..b84655398 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentInherited001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentInherited001Test.java index d0f881eff..bc95683f1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentInherited001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentInherited001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic001Test.java index 1cd1933b5..c4dffe850 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic002Test.java index 5bbf50ca8..11cc12aaa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic003Test.java index 8cc43ed22..49f3bc2bf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic004Test.java index f7bd0a8ae..4c225ad03 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentIntrinsic004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow001Test.java index da6a42738..469d1e45d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow002Test.java index 709a5ab6c..0d1dc6308 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow003Test.java index 372b4d95c..97ab7a34d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow004Test.java index 28c769041..717ffabe6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentOverflow004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentPercent001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentPercent001Test.java index 060854449..a42e0dc04 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentPercent001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentPercent001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentWrap001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentWrap001Test.java index f2e807650..23300d825 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentWrap001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextIndentWrap001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform001Test.java index 849f2edda..c1ef5cf21 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform002Test.java index 263235888..503b8bf25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform003Test.java index faa2a7725..ea013fa5e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform004Test.java index e2d03dd6b..df9268d67 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform005Test.java index f32a552ca..4fee0f8d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransform005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo001Test.java index 681523bdc..bd82b7569 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo002Test.java index bdd205839..c3419e473 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo003Test.java index f993bde02..0db87beaa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo005Test.java index 2e9ff8a94..845aa25bf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo006Test.java index 52d7babd2..102ed350c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo007Test.java index 20aa6e191..6060c6e4a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo008Test.java index 8cdabf885..40fffabd7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo009Test.java index ca8583b41..d99575642 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo010Test.java index 308c02217..d6d50018f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo011Test.java index 56f2d7a11..3802289d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo012Test.java index acb1ad502..bc592674a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo013Test.java index 70274009e..5c2c25caa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo014Test.java index bd995dee8..fd6bb462d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo015Test.java index 000dee5c3..365ff1be8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize001Test.java index f29f5205d..96fca648f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize002Test.java index d22bb7165..80c17e3dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize003Test.java index 2e62520f9..215b2e229 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformCapitalize003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformLowercase001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformLowercase001Test.java index ff3d46a72..6faa30361 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformLowercase001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformLowercase001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUnicase001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUnicase001Test.java index 6c55c1650..4912e2296 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUnicase001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUnicase001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUppercase001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUppercase001Test.java index 352b9a5d4..d2513ca32 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUppercase001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUppercase001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUppercase002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUppercase002Test.java index 8c459afa5..97aad61fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUppercase002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/TextTransformUppercase002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace001Test.java index 82b33c002..917251d8c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace002Test.java index e3fd20a95..7a7a1f37d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace003Test.java index e36f1495b..6bcbcd0ee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace004Test.java index bc64a89c8..648ae317a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace005Test.java index 188839633..5d1dac031 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace006Test.java index c12d1f65b..da153283d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace007Test.java index 9022c7d84..f9f078a55 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace008Test.java index 34dfb27de..985083c02 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpace008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo001Test.java index c2841d328..4316b8bd0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo002Test.java index 57d3b2302..f016947cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo003Test.java index d069f5b2d..eb3bea9d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo005Test.java index 3a1dd535a..6714f8cf7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo006Test.java index ad6a89a9b..7dd162ab8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo007Test.java index 5507f2048..56696ff82 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo008Test.java index 0bd35ae3b..5695929d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo009Test.java index 881abf6d3..0aab92529 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo010Test.java index b54c33b04..2151eff8d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo011Test.java index 13f51f149..604507270 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo012Test.java index 426bb0fc2..47c186c79 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo013Test.java index c25487557..04e3ba601 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo014Test.java index 8a043b555..03cf141ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo015Test.java index 941fe731a..e903a4a35 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing001Test.java index b1a72c13a..cd317a140 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing002Test.java index 1202d77e2..03bc3624b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing003Test.java index aa1bf13b0..9025b39c3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing004Test.java index c564bca93..74dfc66d0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing005Test.java index 9ba15cb8c..8d0fdb610 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsingBreaks001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsingBreaks001Test.java index c08cc782f..2b0017fac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsingBreaks001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsingBreaks001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceControlCharacters001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceControlCharacters001Test.java index c433505c4..ba780d422 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceControlCharacters001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceControlCharacters001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceGeneratedContentBefore001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceGeneratedContentBefore001Test.java index 7a4c04d1f..f531d653c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceGeneratedContentBefore001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceGeneratedContentBefore001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed001Test.java index a35227282..333d6ea69 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed002Test.java index e8c5056c2..04fa9ed9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed003Test.java index ff25a5e55..7ffdd9b8f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed004Test.java index 604ca1052..dcbea9832 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceMixed004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal001Test.java index 494a97831..9e09e0262 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal002Test.java index 2a4ff352f..5f361955a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal003Test.java index 170ce5fe7..1e9666bcf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal004Test.java index e56090611..f7666cf64 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal005Test.java index c45743885..6b604dbcf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal006Test.java index 5a4674317..c84ff9d7f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal007Test.java index 6383ea5a8..22db3658b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal008Test.java index fcb7fa686..52198bf2d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal009Test.java index d3f221326..5c782fa34 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNormal009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap001Test.java index 433252d19..77977ef1d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap005Test.java index 2e9a343a0..3021e2023 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap006Test.java index 01b5abe2f..0c7cc2538 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrapAttribute001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrapAttribute001Test.java index ccca5a07c..509b74c9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrapAttribute001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceNowrapAttribute001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePElement001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePElement001Test.java index 8b41109e1..57c240d3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePElement001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePElement001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre001Test.java index 8d97fd52e..a953b3543 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre002Test.java index 4d70e9564..6a9aa5c3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre005Test.java index f194a5149..063f66ca7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre006Test.java index 224547f23..2ac38aa13 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre007Test.java index 7db6345cf..67d392f45 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePre007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePreElement001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePreElement001Test.java index 9ecd4e909..16c576b25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePreElement001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpacePreElement001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing001Test.java index dd4f3720b..4bb8c9a4f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing002Test.java index 6218dc970..cd179d090 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing003Test.java index 534776018..2a00c6588 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing004Test.java index 748dd9d2a..f8897f4bc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing005Test.java index 4ecd2a933..aecb39b87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing006Test.java index 55ebedbd7..943fbc68c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing007Test.java index 52b0f20eb..db16fe05c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing008Test.java index 40bd4c539..1a002ebc9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing009Test.java index 79e8c14b1..f964c44a3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing010Test.java index 69c371d89..aac4115a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing011Test.java index 2db513d8a..8c2d1f8bb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing012Test.java index 53bf2d081..212896a6f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing013Test.java index 965bb5270..e3ac37a96 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing014Test.java index 405dc8f16..6cdb5e18a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing015Test.java index 6153590d6..0b3b8cbf3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing016Test.java index b5e2ce58f..c50d42db3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing017Test.java index 2a79a1e14..4fbfc5f83 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing018Test.java index 5909343ae..bb8c57c5e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing019Test.java index cb6d2cb66..408ad201f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing020Test.java index 0848b7e16..4bd0b5cfa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing021Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing021Test.java index 022ea32af..91f0c34ee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing021Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing021Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing022Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing022Test.java index ed9c834d6..9b5d652cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing022Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing022Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing023Test.java index 7d800c83d..620294081 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing024Test.java index 936904497..ad9dc74ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing025Test.java index d6016027b..86df98c5f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing026Test.java index aa21aa36c..55e531ce3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing027Test.java index f381dd7e7..647805af3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing028Test.java index b4e3303d4..8670dbb11 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing029Test.java index 84aff4560..55767e71b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing030Test.java index f01d9403a..088d9ed7d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing031Test.java index 74dec7eef..ef521a45e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing032Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing032Test.java index a2e3fc9dd..811bcb6e4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing032Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing032Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing033Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing033Test.java index e4ab0aa22..26848011e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing033Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing033Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing034Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing034Test.java index dc577ed0a..e49080b99 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing034Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing034Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing035Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing035Test.java index f5b0a2f72..d5b6194ef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing035Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing035Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing036Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing036Test.java index 1dfea89ed..874308323 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing036Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing036Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing037Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing037Test.java index 41bfcfb4e..3b44e80e9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing037Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing037Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing038Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing038Test.java index a41cb6c2b..0d52791f5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing038Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing038Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing039Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing039Test.java index 5630cbd61..f96f5ddd2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing039Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing039Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing040Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing040Test.java index 23caa0836..ac5c91a2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing040Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing040Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing041Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing041Test.java index 992ed13f3..117329230 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing041Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing041Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing042Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing042Test.java index a6f37242a..868f58511 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing042Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing042Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing043Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing043Test.java index 0bb80ee14..51251de9d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing043Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing043Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing044Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing044Test.java index 01bae39d8..1c97fc2c0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing044Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing044Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing045Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing045Test.java index 207c19c55..868a37fa0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing045Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing045Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing046Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing046Test.java index 31a3aa423..f3f76a4e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing046Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing046Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing047Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing047Test.java index 490e5aa78..e1b350786 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing047Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing047Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing048Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing048Test.java index 44e2f460b..3031fcec3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing048Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing048Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing049Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing049Test.java index 07ccd59a9..94021529d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing049Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing049Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing050Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing050Test.java index 8bfecd698..c3a186e43 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing050Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing050Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing051Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing051Test.java index ac5a0fe31..6b23c7ce8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing051Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing051Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing052Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing052Test.java index 343c8b674..d32605183 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing052Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing052Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing053Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing053Test.java index 04a484702..42958e581 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing053Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing053Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing054Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing054Test.java index 5cdcd7c3c..7441d8e7a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing054Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing054Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing055Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing055Test.java index bcfd9c885..acda13d17 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing055Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing055Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing056Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing056Test.java index 8f48846f4..77c43ae3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing056Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing056Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing057Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing057Test.java index d4dd9a104..e1ce4298d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing057Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing057Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing058Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing058Test.java index 6162bb26d..2e67975b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing058Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing058Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/ui/Overflow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/ui/Overflow001Test.java index 3ea306a08..dd180aee8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/ui/Overflow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/ui/Overflow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/ui/Overflow002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/ui/Overflow002Test.java index 5ed3b4b85..9f963ecdd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/ui/Overflow002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css21/ui/Overflow002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel148Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel148Test.java index b2de9a65b..f5a693903 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel148Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel148Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel149Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel149Test.java index 4bca71d89..82a312746 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel149Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel149Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel149bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel149bTest.java index 0f2cd5937..ced225dc6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel149bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel149bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel150Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel150Test.java index 2662bfa06..00363e1a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel150Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel150Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel151Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel151Test.java index 4284dc989..f300185a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel151Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel151Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel152Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel152Test.java index 5879a7b3a..1254393ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel152Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel152Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel153Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel153Test.java index df0cc5edb..f8252ba84 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel153Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel153Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27Test.java index a7f445d11..539385c56 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27aTest.java index 6366746da..f9e6421d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27bTest.java index 2ea8e1691..0486f6ad0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel27bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3ModselD1bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3ModselD1bTest.java index e01946135..cc1b0dc01 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3ModselD1bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3ModselD1bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.java index 3df0ddf1e..88a577146 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.java index 4406858c6..442a83865 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.java index 48b8e4070..6e4dd5408 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_178_ParsingNotAndPseudoElementsTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_178_ParsingNotAndPseudoElementsTest.java index cc41c0cb3..78bacd4aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_178_ParsingNotAndPseudoElementsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_178_ParsingNotAndPseudoElementsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.java index ef7f5664f..5369d7847 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.java index 1f8fcd11a..77f0c9e33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.java index b411fc618..55fa071ce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.java index d8f6ffb14..9483801b7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.java index ecc8216a8..f29dc96f9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.java index 02544739c..0ca6870d3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_59_NegatedClassSelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_59_NegatedClassSelectorTest.java index 73d238544..697c10bdb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_59_NegatedClassSelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_59_NegatedClassSelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_60_NegatedIdSelectorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_60_NegatedIdSelectorTest.java index 52a761599..8976c47a7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_60_NegatedIdSelectorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_60_NegatedIdSelectorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_61_NegatedLinkPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_61_NegatedLinkPseudoClassTest.java index 2b82169d4..36773bfc4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_61_NegatedLinkPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_61_NegatedLinkPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_62_NegatedVisitedPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_62_NegatedVisitedPseudoClassTest.java index 5d89849a3..fbbf18687 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_62_NegatedVisitedPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_62_NegatedVisitedPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_63_NegatedHoverPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_63_NegatedHoverPseudoClassTest.java index 4f755fd8d..0bae8a9a4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_63_NegatedHoverPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_63_NegatedHoverPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_64_NegatedActivePseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_64_NegatedActivePseudoClassTest.java index bdfdc95a5..dd47f06f9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_64_NegatedActivePseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_64_NegatedActivePseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_65_NegatedFocusPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_65_NegatedFocusPseudoClassTest.java index f07dd5ab8..5b5537c39 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_65_NegatedFocusPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_65_NegatedFocusPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_66_NegatedTargetPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_66_NegatedTargetPseudoClassTest.java index 1f1ea5c6e..9ac29d6d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_66_NegatedTargetPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_66_NegatedTargetPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_66b_NegatedTargetPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_66b_NegatedTargetPseudoClassTest.java index f0d940ed3..c14ae29e5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_66b_NegatedTargetPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_66b_NegatedTargetPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_67_NegatedLangPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_67_NegatedLangPseudoClassTest.java index f50e6c69c..8ac3ad478 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_67_NegatedLangPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_67_NegatedLangPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_68_NegatedEnabledPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_68_NegatedEnabledPseudoClassTest.java index 806c86168..301c3fbbf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_68_NegatedEnabledPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_68_NegatedEnabledPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_69_NegatedDisabledPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_69_NegatedDisabledPseudoClassTest.java index f0a9364a6..68442faad 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_69_NegatedDisabledPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_69_NegatedDisabledPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_70_NegatedCheckedPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_70_NegatedCheckedPseudoClassTest.java index 8865155aa..0345a8592 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_70_NegatedCheckedPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_70_NegatedCheckedPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_72_NegatedRootPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_72_NegatedRootPseudoClassTest.java index 804859f7e..3d51b65cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_72_NegatedRootPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_72_NegatedRootPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_72b_NegatedRootPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_72b_NegatedRootPseudoClassTest.java index fc706073f..c1ac41481 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_72b_NegatedRootPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_72b_NegatedRootPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_73_NegatedNthChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_73_NegatedNthChildPseudoClassTest.java index daae83c80..a386479bb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_73_NegatedNthChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_73_NegatedNthChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_73b_NegatedNthChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_73b_NegatedNthChildPseudoClassTest.java index 52258c669..f6992afdc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_73b_NegatedNthChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_73b_NegatedNthChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_74_NegatedNthLastChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_74_NegatedNthLastChildPseudoClassTest.java index 2bce0cd8e..6f398566a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_74_NegatedNthLastChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_74_NegatedNthLastChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.java index fb0aae10d..4eb1fd885 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_75_NegatedNthOfTypePseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_75_NegatedNthOfTypePseudoClassTest.java index 187343fd5..a2d210d8f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_75_NegatedNthOfTypePseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_75_NegatedNthOfTypePseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.java index f66415f98..4f29c48ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.java index 58b8da29a..6d02fc914 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_77_NegatedFirstChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_77_NegatedFirstChildPseudoClassTest.java index 9afaeedd5..2ffd93935 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_77_NegatedFirstChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_77_NegatedFirstChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_77b_NegatedFirstChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_77b_NegatedFirstChildPseudoClassTest.java index 2f4f48e8a..45d232229 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_77b_NegatedFirstChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_77b_NegatedFirstChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_78_NegatedLastChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_78_NegatedLastChildPseudoClassTest.java index 069e7555f..74d6b3d16 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_78_NegatedLastChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_78_NegatedLastChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_78b_NegatedLastChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_78b_NegatedLastChildPseudoClassTest.java index 757316c24..d846917b5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_78b_NegatedLastChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_78b_NegatedLastChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.java index bcb7d64e8..fa0a160de 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_80_NegatedLastOfTypePseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_80_NegatedLastOfTypePseudoClassTest.java index 628458c14..0d13a525c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_80_NegatedLastOfTypePseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_80_NegatedLastOfTypePseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_81_NegatedOnlyChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_81_NegatedOnlyChildPseudoClassTest.java index 97d7b0304..98b903718 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_81_NegatedOnlyChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_81_NegatedOnlyChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.java index ba99f8fa8..a7f10b6f3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.java index f673af94e..b5ca241cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.java index fcf576781..e173c9a8d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.java index 4c0d32345..7442e3ce0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.java index 6e6904499..b6ab1bdf9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/RootSiblingsTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/RootSiblingsTest.java index 621115709..a100afa33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/RootSiblingsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/RootSiblingsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/SelectorsEmpty001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/SelectorsEmpty001Test.java index d2aa05308..795b63c2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/SelectorsEmpty001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css3_selectors/SelectorsEmpty001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Background334Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Background334Test.java index 2cee721d7..fa97b8cb3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Background334Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Background334Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundAttachment353Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundAttachment353Test.java index 09d7b0c8a..073341d2d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundAttachment353Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundAttachment353Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip002Test.java index 3060f95d8..63d87c728 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip003Test.java index 2c3546d3a..1220852c2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip004Test.java index 070795c65..c94f44924 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip005Test.java index a17dcb383..757de5639 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip006Test.java index 200614c2d..20c099ec7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip007Test.java index 87a9a52d7..85cf0948a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -24,7 +24,6 @@ This file is part of the iText (R) project. import com.itextpdf.html2pdf.css.w3c.W3CCssTest; -// TODO DEVSIX-4538 consider whether it is possible not to draw a rectangle when width or height equals to zero public class BackgroundClip007Test extends W3CCssTest { @Override protected String getHtmlFileName() { diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip008Test.java index 652f6b0c4..89ceadb3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -24,7 +24,6 @@ This file is part of the iText (R) project. import com.itextpdf.html2pdf.css.w3c.W3CCssTest; -// TODO DEVSIX-4538 consider whether it is possible not to draw a rectangle when width or height equals to zero public class BackgroundClip008Test extends W3CCssTest { @Override protected String getHtmlFileName() { diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip009Test.java index 599e22a7c..7977621ba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip010Test.java index bdf1d2beb..6a245f7f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClip010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -24,7 +24,6 @@ This file is part of the iText (R) project. import com.itextpdf.html2pdf.css.w3c.W3CCssTest; -// TODO DEVSIX-4538 consider whether it is possible not to draw a rectangle when width or height equals to zero public class BackgroundClip010Test extends W3CCssTest { @Override protected String getHtmlFileName() { diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipColorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipColorTest.java index 91a5b1d7e..4d9fa5f34 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipColorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipColorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBox001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBox001Test.java index 9800cae57..45c148e85 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBox001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBox001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBoxTest.java index cf1ffe4f4..f035a282d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipPaddingBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipPaddingBoxTest.java index 069c9ee48..c05a1e848 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipPaddingBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipPaddingBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipRootTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipRootTest.java index 041e2b60c..6f4c86462 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipRootTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundClipRootTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation001Test.java index ff83b4c7b..fa9b6e882 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation002Test.java index 1c13c726d..530e248b8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation004Test.java index 62c1945ac..e96723992 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation005Test.java index f80af373e..1e5e8bfc5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBorderBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBorderBoxTest.java index e5d268537..4896ecede 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBorderBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorBorderBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorClipTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorClipTest.java index 1adbd0456..d678f5833 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorClipTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorClipTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorPaddingBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorPaddingBoxTest.java index 84587c678..38876d8f5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorPaddingBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorPaddingBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorRootPropagation001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorRootPropagation001Test.java index 4197cb997..542922b50 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorRootPropagation001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundColorRootPropagation001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundGradientSubpixelFillsAreaTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundGradientSubpixelFillsAreaTest.java index 2b66d3c32..ff96cb43c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundGradientSubpixelFillsAreaTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundGradientSubpixelFillsAreaTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage001Test.java index 36bc1610b..139b3643b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage002Test.java index 84a6275d4..4ae02a3c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage003Test.java index 1321eefbd..8c7986cca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage004Test.java index 974548da2..a9f72db1f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage005Test.java index 3a2699372..5183e0974 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage006Test.java index cce212288..c6601db94 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage007Test.java index 967b0dd9a..39008c4b0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImage007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredTest.java index 6781af3c9..628602ffb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredWithBorderRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredWithBorderRadiusTest.java index 514318dea..b8adeb8f0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredWithBorderRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredWithBorderRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCoverZoomed1Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCoverZoomed1Test.java index 6eae124d3..fee13b5e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCoverZoomed1Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageCoverZoomed1Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageFirstLetterTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageFirstLetterTest.java index 5ab38b05a..cdcb09442 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageFirstLetterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageFirstLetterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageLargeWithAutoTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageLargeWithAutoTest.java index ce801f961..ae7434267 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageLargeWithAutoTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageLargeWithAutoTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageTableCellsZoomedTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageTableCellsZoomedTest.java index 40d4f3afa..af84cdfe3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageTableCellsZoomedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundImageTableCellsZoomedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundMarginIframeRootTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundMarginIframeRootTest.java index 4604c98f2..58f1038e5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundMarginIframeRootTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundMarginIframeRootTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin002Test.java index 7286efdf9..1a3c657c3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin003Test.java index 2b6e7ce93..130df1331 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin004Test.java index 6544a7705..80383c10b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin005Test.java index bad9e1711..1cffac1cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin007Test.java index e3c2346d1..377e610c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin008Test.java index 9d5d00952..2d26950c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPaintOrder001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPaintOrder001Test.java index 85c37ea4b..2d2e7910b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPaintOrder001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPaintOrder001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPositionThreeFourValuesTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPositionThreeFourValuesTest.java index 8455ce73f..0119f7bd4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPositionThreeFourValuesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPositionThreeFourValuesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPropertiesGreaterThanImagesTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPropertiesGreaterThanImagesTest.java index 93413e8d4..d24ad1413 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPropertiesGreaterThanImagesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundPropertiesGreaterThanImagesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatBpaceBontentBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatBpaceBontentBoxTest.java index 2cee6dacf..e4d9aa0bd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatBpaceBontentBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatBpaceBontentBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound001Test.java index 486273956..01432a0e5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound002Test.java index 326a300ed..6bd4ad1c8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRoundedImageClipTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRoundedImageClipTest.java index f7f636f8a..ab41d805f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRoundedImageClipTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundRoundedImageClipTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize002Test.java index 591e31b58..05a62941f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize003Test.java index 55c494144..f13dec690 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize005Test.java index a1dc3d56b..132006414 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize006Test.java index 400f75fa2..9898f2bda 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize007Test.java index fea2dd407..baaf4d644 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize008Test.java index 9d0ecc9d0..ab1ce9067 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize009Test.java index 874a784d8..735130f0f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize010Test.java index a57b1b3ad..329b09707 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize011Test.java index 3ec6a74b5..dff9d2b33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize012Test.java index d87f4bd9c..a50103ce5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize013Test.java index f85733fe0..4b22e50e7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize014Test.java index 241150627..64541aa97 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize015Test.java index ce8478e72..878e74e4d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize016Test.java index 9d8625423..5a6442052 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize017Test.java index 6c7fe07e7..0fbb92448 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize018Test.java index e5efbf64c..1dc4febc8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize019Test.java index f6cbee814..4609fc4a0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize020Test.java index e10e5ac1c..9589b854e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize021Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize021Test.java index 162933127..4fd105f03 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize021Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize021Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize022Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize022Test.java index 46661322b..149517ae1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize022Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize022Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize023Test.java index d8262a20b..e0a646e6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize024Test.java index 9ee2fa448..ab0dea484 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize025Test.java index 1265ead9b..a97c9efb2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize026Test.java index e461a8eb8..337278ca8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize027Test.java index 719de3605..19ac0a56b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize028Test.java index f8e7b7914..0107ac526 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize029Test.java index 22cce4144..0c61cd9ba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize030Test.java index c8b6b4a3a..d016f9e02 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize031Test.java index a13fcf163..8198a33ba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize032Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize032Test.java index e4c207edf..43ccf211f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize032Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize032Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize033Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize033Test.java index 5871d6d21..ab07a8031 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize033Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize033Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize034Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize034Test.java index def93ef98..0a428bbf0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize034Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSize034Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAppliesToBlockTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAppliesToBlockTest.java index 840254923..f73b345f5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAppliesToBlockTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAppliesToBlockTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAspectRatioTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAspectRatioTest.java index 3aba1eeb9..7e547ba3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAspectRatioTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAspectRatioTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain001Test.java index f2f4a9afc..5e0100f26 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain002Test.java index 8c84ae5d8..e5530bae1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover001Test.java index 4218c2424..9f496578c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover002Test.java index 3cbaaf915..3aa4b3716 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover003Test.java index 63ec31f7b..021b3e325 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeOneValue1x1ImageTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeOneValue1x1ImageTest.java index 14e271cdb..04b09af8b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeOneValue1x1ImageTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeOneValue1x1ImageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizePercentageRootTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizePercentageRootTest.java index 594f6092f..3f232bc91 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizePercentageRootTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizePercentageRootTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeWithNegativeValueTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeWithNegativeValueTest.java index 7dfee244e..da067dc85 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeWithNegativeValueTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BackgroundSizeWithNegativeValueTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgClipPadBoxWithBRTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgClipPadBoxWithBRTest.java index 7e9d90fa8..302f3ac22 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgClipPadBoxWithBRTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgClipPadBoxWithBRTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgColorAppliedToRIETest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgColorAppliedToRIETest.java index 41e8a1e2a..c4f8b434d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgColorAppliedToRIETest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgColorAppliedToRIETest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgPNegativePercentageComparisonTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgPNegativePercentageComparisonTest.java index 3664d0e1c..609f7fa1e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgPNegativePercentageComparisonTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgPNegativePercentageComparisonTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgPSubpixelAtBorderTentativeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgPSubpixelAtBorderTentativeTest.java index 75e6c16c8..4b9ff090e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgPSubpixelAtBorderTentativeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BgPSubpixelAtBorderTentativeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius004Test.java index 2dc869644..7162c5d62 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius005Test.java index 851f519f1..0c6491fbc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius004Test.java index 218c52711..355ef4067 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius005Test.java index df83af214..7b3881ad1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderColorTransparentTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderColorTransparentTest.java index 86d8b906a..997aa16ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderColorTransparentTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderColorTransparentTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage017Test.java index 807d41854..b9885cc6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage018Test.java index 8bf50435d..ee431500d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage019Test.java index dee50fea9..ee718bed2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage020Test.java index 7950dbe9e..b0f6371e3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage10Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage10Test.java index 2278413e6..fda64bfc0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage10Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage10Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage11Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage11Test.java index af6edead1..d1435a91b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage11Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage11Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage12Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage12Test.java index 87bd474cb..13bfb64c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage12Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage12Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage13Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage13Test.java index b0b13645e..7cfe6d053 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage13Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage13Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage14Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage14Test.java index aafeaa49a..4f06fafea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage14Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage14Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage15Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage15Test.java index 27263f587..1aa0d2723 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage15Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage15Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage16Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage16Test.java index 4c0dfa693..fb8fcef0f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage16Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage16Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage1Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage1Test.java index bd2f225c2..c3695058d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage1Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage1Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage2Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage2Test.java index cd668749d..0a2e76624 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage2Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage2Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage3Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage3Test.java index 1124bd99e..46dfa8a9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage3Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage3Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage4Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage4Test.java index ee31aa1af..0e628e17c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage4Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage4Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage6RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage6RefTest.java index 61b9614ed..2970a2866 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage6RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage6RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage6Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage6Test.java index 2bfce5806..d76d98bfa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage6Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage6Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage7Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage7Test.java index 91c279ec5..eaa5bfecc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage7Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage7Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage8Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage8Test.java index a190e1974..ab84370d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage8Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage8Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage9Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage9Test.java index 2b57c9df8..39c2bf877 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage9Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImage9Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageCalcRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageCalcRefTest.java index 2a6b20332..c494fa885 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageCalcRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageCalcRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageCalcTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageCalcTest.java index 791c71744..053d856aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageCalcTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageCalcTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageImageType003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageImageType003Test.java index 543dd6491..61c3ceee4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageImageType003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageImageType003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset001Test.java index 4b3adef1e..2c8f8a1ed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset002Test.java index 3f24a17e1..f703deedc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003RefTest.java index b26bc88ff..85ae9797d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003Test.java index 244e1babf..65b3a60ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRepeat005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRepeat005Test.java index 99e95ce32..c8bfc789c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRepeat005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRepeat005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRepeatRoundTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRepeatRoundTest.java index 6cdc8fbd9..88ede8f25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRepeatRoundTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRepeatRoundTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRoundAndStretchTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRoundAndStretchTest.java index c59ac478e..4ad3ead88 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRoundAndStretchTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageRoundAndStretchTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice001Test.java index 8dfbba1a4..a1a5e99b6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice002Test.java index 646a3b739..c4f195758 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice003Test.java index 3ebd578ee..4e3f7446e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice004Test.java index 0d0ffc75c..d332402b3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice005Test.java index 092687ca5..ab0dd531d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice006Test.java index 04aad1b68..85bc3da8a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice007Test.java index b855b303e..7d4689585 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlice007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlicePercentageTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlicePercentageTest.java index 887e4a0fb..7f17a6c99 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlicePercentageTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSlicePercentageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSpace001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSpace001Test.java index 13b70d34d..8c08894d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSpace001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageSpace001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth001Test.java index 11ff36cb9..ef451c258 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth002Test.java index edc223610..03693d9f8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth003Test.java index 3bbb07fe6..8bb5f5e5a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth004Test.java index 1b6c93d41..065014ff3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth005Test.java index d3cbe69d1..006f58898 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth006Test.java index fe6d5c85b..49f1612a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth007Test.java index 82f8706d8..ff6561e0d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008RefTest.java index e5429fa61..444016a73 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008Test.java index 11c4c43da..135e62ac6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImagesTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImagesTest.java index 5320fec78..3efc1a1d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImagesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderImagesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius001RefTest.java index 9e14e3c23..bdcf54b3a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius001Test.java index 047cf4cca..ee0963bee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius002RefTest.java index 797e6c370..26d3af9c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius002Test.java index 834c9a050..37e35f680 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius003RefTest.java index fd3dbcc83..780af8fe4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius003Test.java index 34165c751..8a30759ef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius004RefTest.java index 5cdb4ab66..6fe1554b4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius004Test.java index 2fcb034f9..c88f891b3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius005RefTest.java index 42d15b219..b280fe5c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius005Test.java index a23c5b287..0555536ed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius006RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius006RefTest.java index 1814e36ce..3ce40cc14 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius006RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius006RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius006Test.java index 89fb7cbfd..55d4e9913 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius007RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius007RefTest.java index 7a37e2187..61e3e422e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius007RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius007RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius007Test.java index c94454a51..2b2ff5696 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius008Test.java index 4644c3cac..4328fac85 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius009RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius009RefTest.java index 1ca6c65e9..4af0eb372 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius009RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius009RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius009Test.java index abca701d6..c639a0fdc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius010RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius010RefTest.java index 17f1a1646..f83c9b866 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius010RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius010RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius010Test.java index 409c5674e..1a4642548 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius011RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius011RefTest.java index 8b0037da8..f1078ae77 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius011RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius011RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius011Test.java index c0e76dcd6..77b9b3ad9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadius011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClip002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClip002Test.java index 134e6471e..32aa3eff8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClip002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClip002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClipping002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClipping002Test.java index adf60c2a0..4d11607ad 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClipping002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClipping002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClippingTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClippingTest.java index 57df1ab94..0ecd337ba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClippingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusClippingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusDynamicFromNoRadiusRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusDynamicFromNoRadiusRefTest.java index a4c5a3295..24b8fa7e4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusDynamicFromNoRadiusRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusDynamicFromNoRadiusRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusHorizontalValueIsZeroTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusHorizontalValueIsZeroTest.java index 429d8c277..3eb8733a7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusHorizontalValueIsZeroTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusHorizontalValueIsZeroTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusInitialValue001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusInitialValue001Test.java index 4e5b12e2c..a90186e45 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusInitialValue001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusInitialValue001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusOverflowHiddenTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusOverflowHiddenTest.java index d1e6592a6..80a9636c3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusOverflowHiddenTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusOverflowHiddenTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusShorthand002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusShorthand002Test.java index 1f9f0baaa..960a4e230 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusShorthand002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusShorthand002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusStyle005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusStyle005Test.java index 6976ff0dd..8380f214a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusStyle005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderRadiusStyle005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004RefTest.java index 9ea90797a..dfb460708 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004Test.java index 6ff19d5b7..e8c05f3ec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005RefTest.java index da5c98648..11f9f6e4f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005Test.java index 9e0292918..2eea0d43e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004RefTest.java index e273b25df..cae19d8e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004Test.java index d145b4e16..ce071a3d5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005RefTest.java index e8a5c08a4..71e1fd13b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005Test.java index 29ab33223..5b9bec329 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderWidthPixelSnapping001BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderWidthPixelSnapping001BTest.java index 648d0501d..dfef66101 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderWidthPixelSnapping001BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BorderWidthPixelSnapping001BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadOutSpreadWithoutBRTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadOutSpreadWithoutBRTest.java index 7ef2d2e36..447512eb8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadOutSpreadWithoutBRTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadOutSpreadWithoutBRTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow001Test.java index e4e02bd00..e102037fc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow002Test.java index 67033e08a..7a2880097 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow003Test.java index 0d4a04cad..fa87ed7e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow004Test.java index f01288620..d6b819743 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow005Test.java index 327bf0ed4..765c8931e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadow005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowBodyTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowBodyTest.java index eee5cecb3..be097fda9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowBodyTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowBodyTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetSpreadWithoutBorderRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetSpreadWithoutBorderRadiusTest.java index 6af882e10..22f7540bc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetSpreadWithoutBorderRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetSpreadWithoutBorderRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetWithoutBorderRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetWithoutBorderRadiusTest.java index a57b5c513..d3de4f49a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetWithoutBorderRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetWithoutBorderRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOutsetWithoutBorderRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOutsetWithoutBorderRadiusTest.java index 37666981c..812f789fc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOutsetWithoutBorderRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOutsetWithoutBorderRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping001Test.java index 34ddd335e..e46260607 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping002Test.java index 7502ac92e..24205ea8d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping003Test.java index 643c3f2fb..dc1784581 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping004Test.java index de6e534c2..f5083a724 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowTableBorderCollapse001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowTableBorderCollapse001Test.java index 70e5dbe56..4e9745dd1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowTableBorderCollapse001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/BoxShadowTableBorderCollapse001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/ChildMoveRevealsParentBackgroundRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/ChildMoveRevealsParentBackgroundRefTest.java index c3d3e6cea..bb0490b77 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/ChildMoveRevealsParentBackgroundRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/ChildMoveRevealsParentBackgroundRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/ColorBehindImagesTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/ColorBehindImagesTest.java index 2ef7d8c42..da562bf75 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/ColorBehindImagesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/ColorBehindImagesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipBorderBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipBorderBoxTest.java index 7730f5f60..02b7e1781 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipBorderBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipBorderBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipContentBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipContentBoxTest.java index 94bb55c2e..954cd59f0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipContentBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipContentBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipPaddingBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipPaddingBoxTest.java index 35e8494d6..40eecf144 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipPaddingBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipPaddingBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipTest.java index b9394b737..4b8333828 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginBorderBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginBorderBoxTest.java index 65b4097db..7b1a1469b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginBorderBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginBorderBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginContentBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginContentBoxTest.java index 1f19e4ca4..768f9be82 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginContentBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginContentBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginPaddingBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginPaddingBoxTest.java index 8396ed0da..5196366ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginPaddingBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginPaddingBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSize001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSize001Test.java index f8e469b5d..6c9987210 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSize001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSize001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeContainTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeContainTest.java index a8542bc12..66ab2bf1a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeContainTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeContainTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeTest.java index 11092ab6e..b381bcf26 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatRepeatTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatRepeatTest.java index a44a85617..af41ff566 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatRepeatTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatRepeatTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatStretchTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatStretchTest.java index a003c03f7..7801ea50f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatStretchTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatStretchTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageSourceTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageSourceTest.java index 2379ff5dc..bcf206bd3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageSourceTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BorderImageSourceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BoxShadowTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BoxShadowTest.java index 880f08501..b121f83a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BoxShadowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/Css3BoxShadowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/CssBorderRadius001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/CssBorderRadius001Test.java index f2163042c..533440f87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/CssBorderRadius001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/CssBorderRadius001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/FirstLetterSpaceNotSelectedTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/FirstLetterSpaceNotSelectedTest.java index 24a90ce70..a157d86bb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/FirstLetterSpaceNotSelectedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/FirstLetterSpaceNotSelectedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollRefTest.java index 4a000e559..b92d773d3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollTest.java index 523c04b39..f691e0256 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowStackingContextScrollTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowStackingContextScrollTest.java index f7fe154f9..747696375 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowStackingContextScrollTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowStackingContextScrollTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/NoneAsImageLayerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/NoneAsImageLayerTest.java index dee73115b..c89bea56c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/NoneAsImageLayerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/NoneAsImageLayerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/OrderOfImagesTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/OrderOfImagesTest.java index 252aa9a8b..83860ed42 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/OrderOfImagesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/OrderOfImagesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/SubpixelRepeatNoRepeatMixTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/SubpixelRepeatNoRepeatMixTest.java index 82dea4dcf..216954c91 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/SubpixelRepeatNoRepeatMixTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/SubpixelRepeatNoRepeatMixTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingBottomTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingBottomTest.java index 5e47298a8..78e3c27e7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingBottomTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingBottomTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingLeftTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingLeftTest.java index fc519a957..c6fd986cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingLeftTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingLeftTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingRightTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingRightTest.java index 5af183d37..341eba6e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingRightTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingRightTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandTest.java index 239fcdd8d..235bb2713 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorTest.java index 82333db70..6fab4e3da 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleDoubleTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleDoubleTest.java index fade96cbe..1839b6cfb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleDoubleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleDoubleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingBottomTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingBottomTest.java index 30a5f5cbd..222cdb880 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingBottomTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingBottomTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingLeftTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingLeftTest.java index fa5fe82b3..bb3b4fc21 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingLeftTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingLeftTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandTest.java index 90b9de273..a937ff7c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleTest.java index f11347633..c5fb87810 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleValuesTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleValuesTest.java index f6405415a..8801df716 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleValuesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleValuesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfReftestBorderRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfReftestBorderRadiusTest.java index 2e7a792a8..10b648c15 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfReftestBorderRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/TtwfReftestBorderRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxTest.java index 9b9e9c72c..a9905cdc4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithPositionTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithPositionTest.java index cc6fe650e..3cf942d64 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithPositionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithPositionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithRadiusTest.java index 64d755f5d..95ce53663 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithSizeTest.java index 357673dc7..7e872346c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxTest.java index 02359e25a..4e729ce5d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithPositionTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithPositionTest.java index 18d369bd4..a109641cf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithPositionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithPositionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithRadiusTest.java index 2a67d01f7..772713b38 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithSizeTest.java index a03d152e4..a5e77612a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxTest.java index 2c656670b..4198f1d1c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithPositionTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithPositionTest.java index 40fbf1b1e..2773dd9e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithPositionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithPositionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithRadiusTest.java index 4d02aedc7..77b81e0ba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithSizeTest.java index 308d34fb7..9e58a490c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipRoundedCornerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipRoundedCornerTest.java index 173686262..2390fe6ce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipRoundedCornerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_clip/ClipRoundedCornerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxTest.java index 967494d94..48136d1e2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithPositionTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithPositionTest.java index 0f1286ddd..ef208ded1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithPositionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithPositionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithRadiusTest.java index c816d3243..8be2cfb2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithSizeTest.java index 1eec0f7c7..13ea666c2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxTest.java index ab39d4e7f..ff75f73c2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithPositionTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithPositionTest.java index 6006f92a9..87b977b91 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithPositionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithPositionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithRadiusTest.java index b5cd0aad8..e7d49adc8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithSizeTest.java index 90d7a5aba..645857a65 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxTest.java index 557f435b4..fc298b77f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithPositionTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithPositionTest.java index ea175d6f4..4b167afae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithPositionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithPositionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithRadiusTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithRadiusTest.java index 29df095a8..b0eea4f1d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithRadiusTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithRadiusTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithSizeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithSizeTest.java index 02a633d19..d82fb2c83 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithSizeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithSizeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_position/SubpixelPositionCenterTentativeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_position/SubpixelPositionCenterTentativeTest.java index 878e52af6..3091e84e4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_position/SubpixelPositionCenterTentativeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_position/SubpixelPositionCenterTentativeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatNoRepeatTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatNoRepeatTest.java index a4e0a3f5d..4f6d0a571 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatNoRepeatTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatNoRepeatTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatXTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatXTest.java index 9a3846642..3328a6963 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatXTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatXTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatYTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatYTest.java index 2614d1235..67af05cb7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatYTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatYTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundRoundUpTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundRoundUpTest.java index e6482b234..042b9bccb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundRoundUpTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundRoundUpTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundTest.java index 398d26eee..f29ded483 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatSpaceTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatSpaceTest.java index b3f9743ac..4ba3fbd36 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatSpaceTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatSpaceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/GradientRepeatSpacedWithBordersTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/GradientRepeatSpacedWithBordersTest.java index 3133562f3..40e84291d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/GradientRepeatSpacedWithBordersTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/background_repeat/GradientRepeatSpacedWithBordersTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC1RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC1RefTest.java index b6ce4ba8b..7cd05a349 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC1RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC1RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC3RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC3RefTest.java index 872994493..75b8c5bdc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC3RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC3RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC4RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC4RefTest.java index 0de4db73a..064a266e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC4RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC4RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC6RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC6RefTest.java index ac9c092f2..167666fbe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC6RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC6RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI1RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI1RefTest.java index 23c0d1c11..57f312912 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI1RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI1RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI3RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI3RefTest.java index 35c648934..772dcb778 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI3RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI3RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI4RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI4RefTest.java index cb0654c75..7e64dbb1d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI4RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI4RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI6RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI6RefTest.java index 417e8a7a6..f1eca6aac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI6RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI6RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos2RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos2RefTest.java index b2e411eb3..4f3357998 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos2RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos2RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos3RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos3RefTest.java index c848f7952..c2b17fe49 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos3RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos3RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos4RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos4RefTest.java index 7736531a8..8611dbad2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos4RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos4RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos5RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos5RefTest.java index bcbab1f3b..b0c67be66 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos5RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos5RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttScrollPos1RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttScrollPos1RefTest.java index 40ed20889..9923d283c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttScrollPos1RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttScrollPos1RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeContainTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeContainTest.java index 01d9a9074..680027e19 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeContainTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeContainTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain001Test.java index 1ae8dc013..0f2c7aeac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain002Test.java index 683475232..588139666 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverSvgTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverSvgTest.java index 71ace0a09..dc41b9972 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverSvgTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverSvgTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverTest.java index 22aa1bcd4..49bdb1661 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroColorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroColorTest.java index 5dc7ea24e..ce61f6b20 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroColorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroColorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroGradientTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroGradientTest.java index 78ccee912..326815f64 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroGradientTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroGradientTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroPngTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroPngTest.java index b58a74a27..d0a71eef8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroPngTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroPngTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroSvgTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroSvgTest.java index 3af6e0208..427c3444f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroSvgTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroSvgTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector001Test.java index c9009fe6c..36c384486 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector002Test.java index 6ddf4e7db..72f7f64dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector003Test.java index cd862ff89..90a0a5e6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector004Test.java index fe7888282..141218749 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector005Test.java index b781553da..806c05499 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector006Test.java index 113207f34..8577ba70d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector007Test.java index e89f35707..531b9d5f3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector008Test.java index 38cfad0ad..c65213ddf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector009Test.java index cc0139f8b..c30e138fe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector010Test.java index 5e45001ba..466ccbbaf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector011Test.java index 837bb245e..1d35c925c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector012Test.java index 70b26ae6e..de0a7b602 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector013Test.java index b00bac27f..d95a154d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector014Test.java index 24366b389..e2c55a51c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector015Test.java index eb06c9309..b171b8d30 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector016Test.java index 26c6800fc..5c025f379 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector017Test.java index c83f6ee6b..b4b181669 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector018Test.java index 29ede3811..13192af76 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector019Test.java index e5d1ee1b0..a2f96088c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector020Test.java index fcca90dff..cea0e79dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector021Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector021Test.java index 8f74351bb..9720ff7e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector021Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector021Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector022Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector022Test.java index b7db15847..2d87995c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector022Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector022Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector023Test.java index 19d0e168a..0b0947b03 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector024Test.java index 4c8b73774..917946763 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector025Test.java index 9b0171d81..9255eb4f0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector026Test.java index a36689d0d..695d9b235 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector027Test.java index 9df8dbf2c..53652eb6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector028Test.java index 7eec1e67d..ed22676cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector029Test.java index b91ad8f6f..3ed656b52 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHTest.java index f476f3850..6afb744f3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHVbTest.java index 4f52efc3e..c5e5896d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHTest.java index 01c459bfe..086b19484 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHVbTest.java index c63534aa1..81aeba917 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHTest.java index 72e19971f..023b4fa52 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHVbTest.java index 49b1cf796..855b7e9ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHTest.java index 80d8fec4f..6285ba8c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHVbTest.java index d5a30b5c2..b7743f5da 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHTest.java index 31779cb6e..012a14e9f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHVbTest.java index b46a628c6..29ed2cd70 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHTest.java index e5e779def..c1b0e6ffc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHVbTest.java index f3702e882..947a0eaba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHTest.java index 90669d80e..8834ac8c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHVbTest.java index ccecc76af..5819404d3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHTest.java index 546cce69b..11688aa00 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHVbTest.java index d3f46350b..ca17c015e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHTest.java index f60d03d01..d06c8669c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHVbTest.java index a7f271419..e85ad0ee4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAOWPHTest.java index 50b54bbfc..9ef0306d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHTest.java index f3404667b..1b8d433db 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHVbTest.java index 0df595e43..2daef9b55 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHTest.java index 00ae16417..1846588bb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHVbTest.java index 66e79c288..8e65e6134 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHTest.java index 5870a0d48..762f59394 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHVbTest.java index def1e205c..16b756532 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConHTest.java index 9b0de008e..ed8acd70c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHTest.java index 2ef0037d4..1e94c6c2d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHVbTest.java index eb18f36f0..e911b14a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHTest.java index f995b74b6..ae3b2e0da 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHVbTest.java index 8e9050304..267f557e8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHTest.java index e437a2394..2c933647c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHVbTest.java index ccc61007d..75bdd3103 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHTest.java index e21946c4d..4d5bbfb0a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHVbTest.java index 0f91acbc8..0597f2b01 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHTest.java index 716e64754..bc8e2135f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHVbTest.java index bbee8870a..7b43b28e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHTest.java index eec8a8c6f..049e6085e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHVbTest.java index 64c579ff6..e37106765 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHTest.java index 8c659326d..487755a25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHVbTest.java index 0c1cef7b3..f566a7fbf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHTest.java index 402b2add5..85ed9af91 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHVbTest.java index cf81d963c..8a488e4d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHTest.java index 95afef63b..3ece91675 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHVbTest.java index b7bdd390f..0aa20b36d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConWTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConWTest.java index b6947ea43..776007967 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConWTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConWTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovHTest.java index 3fa48a830..1e7f8aedf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHCTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHCTest.java index e54b188ec..21cb7fc48 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHCTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHCTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHTest.java index a6a5932b6..b5083edc8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbCTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbCTest.java index f58fc1c02..f8903db3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbCTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbCTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbTest.java index 3669ea9d7..b02ad0efb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHTest.java index 6993e933a..2347b2666 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHVbTest.java index 531a16439..eb0350074 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHTest.java index 191ff091a..0666adb68 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHVbTest.java index 3fb6b1255..854fead48 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHTest.java index 8153a4301..ef8edb44d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHVbTest.java index 064d942b6..ae498afb3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHTest.java index c92b8d94d..e391567fb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHVbTest.java index fb2ad5c25..7244a495c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHTest.java index 901b908b6..0c9d5ff7d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHVbTest.java index 7584c8b84..c5f7eefa9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHTest.java index d1df0ba86..10353e1e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHVbTest.java index 8db635d53..2abd8ca2b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHTest.java index edff3d23c..991e114d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHVbTest.java index 9cda25e54..21ef61b9f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHTest.java index 3505feef5..be3d4adce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHVbTest.java index 68fb464d7..ed3601e74 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovWTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovWTest.java index 11e18d2d7..49c44c1ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovWTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovWTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHTest.java index 03772e051..7315e3a1a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHVbTest.java index 5ae45fb8f..71a7e67be 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHTest.java index 769e8d394..895867105 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHVbTest.java index a4f4e824e..d173b8580 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHTest.java index 326f2f5c7..051f5e883 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHVbTest.java index 226e7391b..ff83f9ebb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHTest.java index 97876229e..8137ec9c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHVbTest.java index d25e5cc9d..815f83ccc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHTest.java index c27a9774f..785014c25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHVbTest.java index a8b6ba805..825b10c45 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHTest.java index 12ccadb06..92efa53a0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHVbTest.java index eb2ba5cbb..05482546d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHTest.java index 10f3cd196..5e6b38b4c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHVbTest.java index cc494f103..536945e60 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHTest.java index 2915491e9..8e93f9c97 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHVbTest.java index c76079175..8033fbeb4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHTest.java index 138b4c495..8ae8404cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHVbTest.java index 779da35e3..1b68a928c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHTest.java index 99a7577aa..d8a4c7671 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHVbTest.java index aa840a307..c75a49f2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHTest.java index 0807f1f73..fd95825a7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHVbTest.java index c153eb2b7..cc4ccc07f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHTest.java index 4af146fe8..ed78101f8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHVbTest.java index c2e33866f..ced7ff343 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHTest.java index a0bada710..c731d2a2a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHVbTest.java index 508d71553..45427e7ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHTest.java index 18b47ba62..a7ca6c6ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHVbTest.java index 566a43712..2e6af0423 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHTest.java index 0d03a1016..643737620 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHVbTest.java index 90703beaf..e6cd8d902 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHTest.java index 57e996aef..3d6edde29 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHVbTest.java index 66544a68d..681ebcbbd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHTest.java index abafea534..4497d359c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHVbTest.java index 710367118..b392d82f8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHTest.java index 9f0e6de01..80ca86d52 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHVbTest.java index f2def17b5..243911604 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHTest.java index 7d9438022..c122bf1ad 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHVbTest.java index 7a088f97f..87fed4525 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHTest.java index 5521cc4ed..52161ed11 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHVbTest.java index 7ae4814b7..14f128eed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHTest.java index d0e82a2b6..043a4fe2b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHVbTest.java index 10cacf30d..7468a1a6e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHTest.java index 4f6895827..035a801ec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHVbTest.java index d282de1cb..02a7c3129 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHTest.java index 40668243d..710aaa7b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHVbTest.java index add80a6ff..a61431596 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHTest.java index f8d2873bc..33897e47b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHVbTest.java index 20f936e45..0b2377a20 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHTest.java index db1f6e71c..00f887b8f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHVbTest.java index bb5e7fed8..35e74bb29 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHTest.java index d6aa2b5d4..b00c9a37a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHVbTest.java index dc861c25a..64407d705 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHTest.java index d49be304f..a1effa69e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHVbTest.java index 9aa39b9e6..cb520c24e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConHTest.java index 08e515488..f22db3063 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHTest.java index 38bbd6331..88305edcd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHVbTest.java index bf76221ed..f7cd9f665 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHTest.java index 98b5107d5..0dac96c3d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHVbTest.java index baa19ebdf..24c206c7a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHTest.java index 58e39145b..b0cc029c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHVbTest.java index 8cd5a4f3c..e17c9fe4d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHTest.java index 52be87607..f052dd9e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHVbTest.java index a55ef20a7..74f4c015b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHTest.java index 87d71745c..bce57b31e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHVbTest.java index 92561ea1f..7a80f9170 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHTest.java index b59b6bdc9..1d2071233 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHVbTest.java index 49331cc14..e0989bfd9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHTest.java index 862e8ae7b..019819db8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHVbTest.java index fac68a345..c853e6054 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHTest.java index be28f639b..916b4b7f8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHVbTest.java index 2dd4388f1..c03789a65 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHTest.java index 108036a42..b8c818a8b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHVbTest.java index a2d793190..ce8e4e41b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConWTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConWTest.java index 65bf9ac49..fe767f47a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConWTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConWTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovHTest.java index 5abf1c90b..d6ae1c4fa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHTest.java index 8462f3890..ff4e28f0b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHVbTest.java index de96ca1e2..e3212450a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHTest.java index 3187e703a..567df03de 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHVbTest.java index c04e44ced..003e988d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHTest.java index c31ca407f..fe78fd255 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHVbTest.java index 0f3cb8cd4..e3d66708c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHTest.java index dc1eff3a9..159c98fb0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHVbTest.java index 59b596308..425132fa7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHTest.java index 77efae707..88c57003e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHVbTest.java index bbc2d125d..2d89dfb01 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHTest.java index 516b2bc85..df7d69b40 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHVbTest.java index 2693e02f6..bc09e4c8b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHTest.java index 1a25df9d9..6fc6a8c48 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHVbTest.java index 122a3efa4..9b72534ed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHTest.java index f94582466..b41a6aea4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHVbTest.java index fd0d70e8c..fdf03b4d4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHTest.java index f6521409a..28110d304 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHVbTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHVbTest.java index 1eb1948bb..855130109 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHVbTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHVbTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatio5PxATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatio5PxATest.java index c1a3b79e5..008ce97f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatio5PxATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatio5PxATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioA5PxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioA5PxTest.java index 33115fe32..8eb4677d5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioA5PxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioA5PxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioAATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioAATest.java index c20677d09..7b3e6ed19 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioAATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioAATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioConTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioConTest.java index b5df2fa5a..7f8116333 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioConTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioConTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioCovTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioCovTest.java index e7cf729e4..6278cbbb7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioCovTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioCovTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoD5PxATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoD5PxATest.java index 98688c87f..abcb430b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoD5PxATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoD5PxATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDA5PxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDA5PxTest.java index 380dee01b..c2b45b989 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDA5PxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDA5PxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDAATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDAATest.java index 2a103b11d..560638018 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDAATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDAATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDConTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDConTest.java index e3402337b..a36c2779c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDConTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDConTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDCovTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDCovTest.java index 3defa4ee8..ae4c154c3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDCovTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDCovTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatio5PxATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatio5PxATest.java index e9ad4b6f1..9f1e556b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatio5PxATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatio5PxATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioA5PxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioA5PxTest.java index 974b7905b..ee2d9421c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioA5PxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioA5PxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioAATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioAATest.java index 9e72a31b2..97bfce86b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioAATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioAATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioConTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioConTest.java index 41fb8bdbd..9167289fc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioConTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioConTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioCovTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioCovTest.java index e40feaf15..3e6e557e4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioCovTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioCovTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/box_shadow/BoxShadowBlurDefinition001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/box_shadow/BoxShadowBlurDefinition001Test.java index 3a1ba1e78..354b79517 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/box_shadow/BoxShadowBlurDefinition001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/box_shadow/BoxShadowBlurDefinition001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImImType003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImImType003RefTest.java index 9210a5f66..7f02252c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImImType003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImImType003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRepeat005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRepeat005RefTest.java index 61e9d80fc..e7cbd2e7c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRepeat005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRepeat005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRepeatRoundRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRepeatRoundRefTest.java index 41dcafa54..cb96b2e33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRepeatRoundRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRepeatRoundRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRoundAndStretchRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRoundAndStretchRefTest.java index bab406396..d3ef750f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRoundAndStretchRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImRoundAndStretchRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImShorthand001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImShorthand001RefTest.java index cc8d7c8d5..18abfd794 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImShorthand001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImShorthand001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImSlicePRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImSlicePRefTest.java index 4bbec8ee6..cd188fa8c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImSlicePRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImSlicePRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImSpace001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImSpace001RefTest.java index 50a0cf92d..8c50b87c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImSpace001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BImSpace001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BRClippingRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BRClippingRefTest.java index f41c8088d..2616c8f9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BRClippingRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BRClippingRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BRHorizontalValueIsZeroRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BRHorizontalValueIsZeroRefTest.java index 548fbada9..1711e5c48 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BRHorizontalValueIsZeroRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BRHorizontalValueIsZeroRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BWidthPixelSnapping001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BWidthPixelSnapping001RefTest.java index 78dcdd67f..fa987b337 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BWidthPixelSnapping001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BWidthPixelSnapping001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Bg334RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Bg334RefTest.java index dc210a65a..1e13fcc3f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Bg334RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Bg334RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip002RefTest.java index b139c659f..1ab9a3a2b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip004RefTest.java index 6be06edee..938ca786a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip005RefTest.java index 40e9789ca..f330d0733 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClip005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClipContentBoxRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClipContentBoxRefTest.java index a51621aea..e5d67b62a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClipContentBoxRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClipContentBoxRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClipPaddingBoxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClipPaddingBoxTest.java index 0084594e9..2afecc146 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClipPaddingBoxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgClipPaddingBoxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgColorClipTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgColorClipTest.java index b4b034db8..661da4a2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgColorClipTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgColorClipTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgGradientSubpixelFillsAreaRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgGradientSubpixelFillsAreaRefTest.java index 5cccb1e32..e1def6a2a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgGradientSubpixelFillsAreaRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgGradientSubpixelFillsAreaRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgIm001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgIm001RefTest.java index 806873e2f..fc8fba153 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgIm001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgIm001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImCeWithBRRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImCeWithBRRefTest.java index 8ad19b45e..fe5df0a6b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImCeWithBRRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImCeWithBRRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImCoverZoomed1RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImCoverZoomed1RefTest.java index 8beca648e..b0c392bf5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImCoverZoomed1RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImCoverZoomed1RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLetterRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLetterRefTest.java index a9605de25..46686ef37 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLetterRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLetterRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLineRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLineRefTest.java index 66cbc2444..4c4fdbec1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLineRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLineRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImLargeWithAutoRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImLargeWithAutoRefTest.java index 1f91143a9..fa1f0d857 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImLargeWithAutoRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImLargeWithAutoRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImTableCellsZoomedRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImTableCellsZoomedRefTest.java index e592cfd4c..891313c90 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImTableCellsZoomedRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgImTableCellsZoomedRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin002RefTest.java index 0dfa268b8..27848eb1d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin004RefTest.java index 27ad12deb..9075eedb8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin005RefTest.java index a46b8cf22..38606d751 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin006RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin006RefTest.java index 4ba9264cb..b9007aaf4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin006RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin006RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin007RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin007RefTest.java index 2d4f99d0f..87d0bdcbd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin007RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin007RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPaintOrder001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPaintOrder001RefTest.java index 67011d502..37b001fd3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPaintOrder001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPaintOrder001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosNgPComRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosNgPComRefTest.java index 767f53083..f9f4c80be 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosNgPComRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosNgPComRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosSubpixelAtBRefTenTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosSubpixelAtBRefTenTest.java index e5dadf692..9417bf24f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosSubpixelAtBRefTenTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosSubpixelAtBRefTenTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosThreeFourValuesRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosThreeFourValuesRefTest.java index e1678e3ac..90ce31e2e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosThreeFourValuesRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgPosThreeFourValuesRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgRoundedImClipTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgRoundedImClipTest.java index df86f5e77..d7e8d9033 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgRoundedImClipTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgRoundedImClipTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS002RefTest.java index ca982493e..253ab918a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS006RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS006RefTest.java index 0e273c858..93f5c13df 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS006RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS006RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS021RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS021RefTest.java index e44670e41..ca2809390 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS021RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS021RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS025RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS025RefTest.java index 8bd0b327f..879e54646 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS025RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS025RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS026RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS026RefTest.java index 19fab9fc3..08b17704e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS026RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS026RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS027RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS027RefTest.java index 437d44f07..600f3dd60 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS027RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS027RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS028RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS028RefTest.java index f6b249848..b4476a340 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS028RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS028RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS029RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS029RefTest.java index 5beae4c23..0747024ff 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS029RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS029RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS031RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS031RefTest.java index e818e9d2c..312e444dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS031RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgS031RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgSOneValue1X1ImRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgSOneValue1X1ImRefTest.java index 109775013..42d273abe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgSOneValue1X1ImRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BgSOneValue1X1ImRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadOutsetSpreadWithoutBRTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadOutsetSpreadWithoutBRTest.java index 337cb6c27..36b0dfa5e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadOutsetSpreadWithoutBRTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadOutsetSpreadWithoutBRTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadow005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadow005RefTest.java index 353d444b9..53d0d175b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadow005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadow005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowBodyRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowBodyRefTest.java index 9174fa04b..15e437930 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowBodyRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowBodyRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetSpreadWithoutBRTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetSpreadWithoutBRTest.java index e860f1c71..93f7b137f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetSpreadWithoutBRTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetSpreadWithoutBRTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetWithoutBRTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetWithoutBRTest.java index 76e951dfe..eba3766b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetWithoutBRTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetWithoutBRTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowOutsetWithoutBRTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowOutsetWithoutBRTest.java index 8d375c40c..426ea5efb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowOutsetWithoutBRTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowOutsetWithoutBRTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowTableBCollapse001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowTableBCollapse001RefTest.java index 1388fcc4b..f3a774109 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowTableBCollapse001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowTableBCollapse001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatRepeatRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatRepeatRefTest.java index 9174cec47..501f91590 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatRepeatRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatRepeatRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatStretchRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatStretchRefTest.java index 44190c847..2b975d81d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatStretchRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatStretchRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImSourceRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImSourceRefTest.java index 58da63fae..8736cd7b8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImSourceRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BImSourceRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipBBoxRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipBBoxRefTest.java index 81e1c34b0..f5c624ce0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipBBoxRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipBBoxRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipContentBoxRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipContentBoxRefTest.java index a28d439f9..e7202fff8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipContentBoxRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipContentBoxRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipPaddingBoxRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipPaddingBoxRefTest.java index 180282728..80dd6fa64 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipPaddingBoxRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipPaddingBoxRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipRefTest.java index 2a3fe3a51..1df6be8db 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginBBoxRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginBBoxRefTest.java index 0f7dfb8a0..dcb424f97 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginBBoxRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginBBoxRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginContentBoxRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginContentBoxRefTest.java index 779872013..2c46f1bef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginContentBoxRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginContentBoxRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginPaddingBoxRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginPaddingBoxRefTest.java index 7b0ca9b8b..73f016e5e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginPaddingBoxRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginPaddingBoxRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgS001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgS001RefTest.java index 029012390..bde65c31f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgS001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgS001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSContainRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSContainRefTest.java index c2c8f418a..2824900ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSContainRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSContainRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSRefTest.java index 7a29aa022..045611dc9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BoxShadowRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BoxShadowRefTest.java index 953895f60..7c1dc817a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BoxShadowRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/Css3BoxShadowRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/CssBoxShadowRef001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/CssBoxShadowRef001Test.java index bcfd5b9d4..4d764bbbe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/CssBoxShadowRef001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/CssBoxShadowRef001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/FirstLetterSpaceNotSelectedRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/FirstLetterSpaceNotSelectedRefTest.java index 618047dca..e04158ca9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/FirstLetterSpaceNotSelectedRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/FirstLetterSpaceNotSelectedRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/RefFilledBlack96PxSquareTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/RefFilledBlack96PxSquareTest.java index d2ef75868..e5192f94a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/RefFilledBlack96PxSquareTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/RefFilledBlack96PxSquareTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/RefIfThereIsNoRedTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/RefIfThereIsNoRedTest.java index b369996b2..fac27f924 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/RefIfThereIsNoRedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/RefIfThereIsNoRedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/ReferenceTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/ReferenceTest.java index 4e927bb57..735772641 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/ReferenceTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/ReferenceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/SixtyXSixtyGreenBgTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/SixtyXSixtyGreenBgTest.java index 764587e45..0b9eb5e22 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/SixtyXSixtyGreenBgTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/SixtyXSixtyGreenBgTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/SubpixelRepeatNoRepeatMixRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/SubpixelRepeatNoRepeatMixRefTest.java index 5f28871cf..4111013f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/SubpixelRepeatNoRepeatMixRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/SubpixelRepeatNoRepeatMixRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/TtwfReftestBRRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/TtwfReftestBRRefTest.java index 90a6b9056..0c7951b82 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/TtwfReftestBRRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_backgrounds/reference/TtwfReftestBRRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic00ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic00ATest.java index 6b3fcf656..924bd445a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic00ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic00ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic06ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic06ATest.java index 27c8e8dd5..311da40dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic06ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic06ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic10ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic10ATest.java index 1046410b4..495aa4cbc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic10ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityBasic10ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityClamping00BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityClamping00BTest.java index 757145e22..4a8284cde 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityClamping00BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityClamping00BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityClamping10BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityClamping10BTest.java index 0f63a9c8b..714e89c9f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityClamping10BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityClamping10BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenBTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenBTest.java index e587741f0..23753c1aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenBTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenBTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes1CTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes1CTest.java index d818da98f..8e307270a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes1CTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes1CTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes2CTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes2CTest.java index b4c3da886..95866b2b7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes2CTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes2CTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenWithAlphaCTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenWithAlphaCTest.java index d3b4c98df..c92fdcc2a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenWithAlphaCTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenWithAlphaCTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T41Html4KeywordsATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T41Html4KeywordsATest.java index cc6a26d3c..8d7b7ffc1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T41Html4KeywordsATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T41Html4KeywordsATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T421RgbValuesMeaningBTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T421RgbValuesMeaningBTest.java index 7b1f5a515..207040f2b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T421RgbValuesMeaningBTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T421RgbValuesMeaningBTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA00ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA00ATest.java index 3677304e9..e8346009f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA00ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA00ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA06ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA06ATest.java index 63b173c35..9f12882cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA06ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA06ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA10ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA10ATest.java index 16559dd90..0b8f942fa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA10ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaA10ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClampingA00BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClampingA00BTest.java index f4de8e275..db6eac425 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClampingA00BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClampingA00BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClampingA10BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClampingA10BTest.java index 2f7781922..b4e80d9e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClampingA10BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClampingA10BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClipOutsideDeviceGamutBTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClipOutsideDeviceGamutBTest.java index 05499e0e9..f76137ba9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClipOutsideDeviceGamutBTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaClipOutsideDeviceGamutBTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncIntATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncIntATest.java index dd9989206..83136e477 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncIntATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncIntATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncPctATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncPctATest.java index 29d4828a4..3bc77984f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncPctATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncPctATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncWhitespaceBTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncWhitespaceBTest.java index d2d08d731..1e82c85a2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncWhitespaceBTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaFuncWhitespaceBTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenBTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenBTest.java index eeb8fd7d2..31b64a2c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenBTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenBTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenMultipleBoxesCTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenMultipleBoxesCTest.java index 75d2fc3b6..ad72e6deb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenMultipleBoxesCTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenMultipleBoxesCTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaValuesMeaningBTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaValuesMeaningBTest.java index bb3964795..40c8a8d22 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaValuesMeaningBTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T422RgbaValuesMeaningBTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T423Transparent1ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T423Transparent1ATest.java index 44f20ec9c..76eadd059 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T423Transparent1ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T423Transparent1ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T423Transparent2ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T423Transparent2ATest.java index fae7b29b0..e0d59754c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T423Transparent2ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T423Transparent2ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T43SvgKeywordsATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T43SvgKeywordsATest.java index 215f70445..698c9e661 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T43SvgKeywordsATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_3/T43SvgKeywordsATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderBottomColorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderBottomColorTest.java index 83d4a6596..b30381cc5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderBottomColorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderBottomColorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderLeftColorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderLeftColorTest.java index a1e8600f3..080e63841 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderLeftColorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderLeftColorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderRightColorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderRightColorTest.java index a178ccd11..9b7beea6a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderRightColorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderRightColorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderTopColorTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderTopColorTest.java index fe3dee0d4..84408a426 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderTopColorTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/BorderTopColorTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Color001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Color001Test.java index 83b3576ef..1a9243372 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Color001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Color001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Color002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Color002Test.java index 277a852c8..1b7a794b4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Color002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Color002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex001Test.java index 479679d29..e5abd194c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex002Test.java index ab1d7afa6..4e5eefe10 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex003Test.java index ee0da2a5f..ff407bdbf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex004Test.java index 52132784c..594d4642f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Hex004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb001Test.java index 510715a1a..96a4332a7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb002Test.java index 9dfcce581..b2f3e33a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb003Test.java index 71bc71ddf..fb2ef7409 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb004Test.java index 5f980c9ba..53aad6460 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb005Test.java index 36ffb1e92..610d506fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb006Test.java index b751a53a6..a5d62f21e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb007Test.java index 46bae14e8..e2e210337 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb008Test.java index c7729b8e8..c97e450a0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgb008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba001Test.java index 1960dc0ac..a630968bd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba002Test.java index fffaa8757..31ca4d333 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba003Test.java index 225ee6dd1..f330584d5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba004Test.java index 9dda5907b..8988edbb0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba005Test.java index ff10ec52a..19a9038f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba006Test.java index bef0e9f8c..d788a0b4f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba007Test.java index 1ecdd8ad9..1dbd5bc2f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba008Test.java index 9250344ff..b4cc5c7e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_color_4/Rgba008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent001Test.java index 9401a8566..42b218ddc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent002Test.java index db1395bbf..89b7301f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent003Test.java index 3c68c2f58..e1935c11c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent004Test.java index ce271e88b..6c938689b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent005Test.java index 4ce2f4c38..76573b528 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent006Test.java index 447e05c77..ec01f46f5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContent006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentCenterTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentCenterTest.java index a8a1f2580..606c0b634 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentCenterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentCenterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentFlexEndTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentFlexEndTest.java index f28a475e6..a318536db 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentFlexEndTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentFlexEndTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentFlexStartTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentFlexStartTest.java index 32749c6e1..0c8ffc192 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentFlexStartTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentFlexStartTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentSpaceAroundTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentSpaceAroundTest.java index 1e60f5b5c..ee7e1bda1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentSpaceAroundTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentSpaceAroundTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentSpaceBetweenTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentSpaceBetweenTest.java index 98c7ee170..759670458 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentSpaceBetweenTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentSpaceBetweenTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap001Test.java index f5ce380cd..39eb9d002 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap003Test.java index 0f45424fb..d65d68078 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap005Test.java index 4f88ed125..18ba66c91 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignContentWrap005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems001Test.java index 8db27857d..f07f0453b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems002Test.java index db6e93ad5..321cd8b5d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems003Test.java index 9beba4962..924fc87ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems004Test.java index bd800057c..44cd03b1a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems005Test.java index 33cebf39a..5f39bfb3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems006Test.java index 9b1084340..9420485d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems007Test.java index a3a653c89..dc578eeaf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems009Test.java index efb630659..705a8e104 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItems009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnHorzTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnHorzTest.java index c39bb585c..47268f28f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnHorzTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnHorzTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrFlexboxItemTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrFlexboxItemTest.java index 0497a1811..ff3a1d90d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrFlexboxItemTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrFlexboxItemTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrGridItemTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrGridItemTest.java index 9124a31a3..918e083d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrGridItemTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrGridItemTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrItemsTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrItemsTest.java index a3eb90d0b..7ddcb3d3a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrItemsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrItemsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrTableItemTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrTableItemTest.java index 88577a038..f2f3d8606 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrTableItemTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertLrTableItemTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlFlexboxItemTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlFlexboxItemTest.java index b12660b69..db930068c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlFlexboxItemTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlFlexboxItemTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlGridItemTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlGridItemTest.java index 502ea706c..76ea3e6d0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlGridItemTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlGridItemTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlItemsTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlItemsTest.java index 2b56e507f..eeecc2585 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlItemsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlItemsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlTableItemTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlTableItemTest.java index fd9638b27..3820ba616 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlTableItemTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertRlTableItemTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertTest.java index 73806412c..95cadfc56 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineColumnVertTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineOverflowNonVisibleTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineOverflowNonVisibleTest.java index 957cb57bf..f670c5485 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineOverflowNonVisibleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineOverflowNonVisibleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineRowHorzTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineRowHorzTest.java index baab90157..cf2d24b14 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineRowHorzTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineRowHorzTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineRowVertTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineRowVertTest.java index 1b7d2e587..f487d9846 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineRowVertTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineRowVertTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineTest.java index ff3ed6113..d8c8e103c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsCenter2Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsCenter2Test.java index ef2b54050..4f16e4822 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsCenter2Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsCenter2Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsCenterTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsCenterTest.java index 5f97118fd..6b1fc1881 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsCenterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsCenterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexend2Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexend2Test.java index dae507ba7..7b0825b93 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexend2Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexend2Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexendTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexendTest.java index 805c2b5ab..0837b232e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexendTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexendTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstart2Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstart2Test.java index 85f9ed3a5..cb1e33132 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstart2Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstart2Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstartTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstartTest.java index 444a46de2..5c68275dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstartTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstartTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsStretch2Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsStretch2Test.java index e2efffe60..b9b5fabf9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsStretch2Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsStretch2Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsStretchTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsStretchTest.java index 79146c5fa..4744d7eb7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsStretchTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignItemsStretchTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf001Test.java index c7c53b726..9dcac27ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf002Test.java index cf1651abe..ddfd24127 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf003Test.java index 9b002ab72..b8ebb7ff6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf004Test.java index 887c48f70..42f932302 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf005Test.java index 97aa9e065..613063e70 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf006Test.java index 779cae2e3..d540242e4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf007Test.java index c92b94524..7133d62ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf008Test.java index 743396c0b..3072711a7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf009Test.java index b496864f3..33dc9de94 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf010Test.java index 3701c07bd..97a1c541b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf011Test.java index 123678357..1d29818d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf012Test.java index 4317cddd7..75c0e9013 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf013Test.java index a5a2170d4..f369d4229 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf014Test.java index a4ea13d33..6d4c71350 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf015Test.java index f7403e217..113f0e1f1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AlignSelf015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AnonymousFlexItem004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AnonymousFlexItem004Test.java index db03271ba..ef00b2f8e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AnonymousFlexItem004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AnonymousFlexItem004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AutoHeightWithFlexTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AutoHeightWithFlexTest.java index 6ba104d39..8ea5968f7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AutoHeightWithFlexTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/AutoHeightWithFlexTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis001Test.java index 83b158e24..7d2d40a8e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis002Test.java index c799dfd61..d1743e939 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis003Test.java index 339e9681c..125d4eb89 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis004Test.java index 5f696899a..8cc1607a3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BaselineSynthesis004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicBlockHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicBlockHoriz001Test.java index 0e284a401..0aab86a47 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicBlockHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicBlockHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicBlockVert001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicBlockVert001Test.java index 7a37aa015..78321062b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicBlockVert001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicBlockVert001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicFieldsetHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicFieldsetHoriz001Test.java index a21cf9135..b223bedf2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicFieldsetHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicFieldsetHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicFieldsetVert001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicFieldsetVert001Test.java index 1c04a0fbb..9eb8a79b4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicFieldsetVert001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/BasicFieldsetVert001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseTest.java index 7f0271d34..399e91ef2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseWrapReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseWrapReverseTest.java index 2f83a5404..50412cf59 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseWrapReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseWrapReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseWrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseWrapTest.java index 1c19b8d29..1ca3a3710 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseWrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowReverseWrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowTest.java index 453ae3b33..868f343b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowWrapReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowWrapReverseTest.java index c1ab3e162..c059e5f0a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowWrapReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowWrapReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowWrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowWrapTest.java index b088c8043..817a95a24 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowWrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/CssFlexboxRowWrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes001Test.java index 98dab0580..f573ee22f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes002Test.java index 4beb46a1d..a38432793 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes003Test.java index 9a3269f99..bc5cc194d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes004Test.java index 6e39d29d3..9acde1ec6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes005Test.java index d135150c5..dde413702 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes006Test.java index 64a323ffa..f41875a67 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DefiniteSizes006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DisplayFlex001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DisplayFlex001Test.java index 1fa4e024c..30cf86618 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DisplayFlex001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/DisplayFlex001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex001Test.java index f18b5bde4..80fac24b5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex002Test.java index ef819c779..8aa8bf8d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex003Test.java index bacc10c91..564f257ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex004Test.java index af6d60039..3009daf03 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/Flex004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentCenterTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentCenterTest.java index 57411ba15..fcb6ecbe0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentCenterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentCenterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentEndTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentEndTest.java index e09e8d976..ed0243d1a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentEndTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentEndTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentStartTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentStartTest.java index 747022f71..c8fac7d15 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentStartTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignContentStartTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfAutoTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfAutoTest.java index e60955a5a..701d30b3a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfAutoTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfAutoTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfBaselineTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfBaselineTest.java index 723fa4cf9..7ad08d426 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfBaselineTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfBaselineTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfCenterTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfCenterTest.java index ee3dbf46f..0b1ac3c2d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfCenterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfCenterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfFlexendTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfFlexendTest.java index caa2990a4..2b140d524 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfFlexendTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfFlexendTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfFlexstartTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfFlexstartTest.java index 9d7f88605..0a956a463 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfFlexstartTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfFlexstartTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfStretchTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfStretchTest.java index 3d7faafdd..79f0c31ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfStretchTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAlignSelfStretchTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn001Test.java index 8314661f7..35b909bae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn002Test.java index 1452e5b7c..9b80e4a93 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn003Test.java index 2649fa4d1..6e166b68c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn004Test.java index 11e06ce3e..4bef2150e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn005Test.java index 2d7f333ab..75c900a49 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn006Test.java index 619fd2cd3..755a71774 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn007Test.java index 8dfc79361..3f84bfebb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn009Test.java index e73a8e9a6..7f5edfcf7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn012Test.java index 3f4dcea30..7e67b910f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn016Test.java index a974984d6..5c4e4e17b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow001Test.java index 751a09750..66f996b1f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow002Test.java index 4ba7d34c2..b1d3a3cfe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow003Test.java index 3a08565c6..f3ae7e70f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow006Test.java index 04a357302..a50bc7195 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow007Test.java index 65f0adb66..180d1eefc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow012Test.java index b9d39840a..cdde1725c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow014Test.java index 8c44163c7..0eab8db93 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBaseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBaseTest.java index 151638228..c1298faaa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBaseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBaseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis001Test.java index 5efdbd559..a7652ad2a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis002Test.java index c6b5f6681..8d9bf401d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis003Test.java index ff3edbd7a..dc3d696cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis004Test.java index 5e47bd297..697dbb24d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis005Test.java index 10cd01f39..879250906 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis006Test.java index d0b374d59..ef4c65cbe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis007Test.java index b930fe979..0b3abade1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis008Test.java index baa5e44f3..7d21a2b90 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis010Test.java index ef6e0ce93..7bda68f23 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasis010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent001ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent001ATest.java index 6b326890f..8d5fc9553 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent001ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent001ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent001BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent001BTest.java index 28dcaeabe..b8fa5dbbf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent001BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent001BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent002ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent002ATest.java index 9afa2bbb6..65a8f65c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent002ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent002ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent002BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent002BTest.java index 4def5bc0b..651633d37 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent002BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexBasisContent002BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnPercentageIgnoredTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnPercentageIgnoredTest.java index 859e4f04e..360b16c73 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnPercentageIgnoredTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnPercentageIgnoredTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnReverseTest.java index 6ce396c62..b0bdc47da 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnTest.java index 44aeba60a..27af8abe8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionDefaultTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionDefaultTest.java index 0c359748b..2ded5cb69 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionDefaultTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionDefaultTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionRowReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionRowReverseTest.java index dd907d638..e9be087cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionRowReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionRowReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionRowTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionRowTest.java index 000af18a2..89ebfb93e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionRowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexDirectionRowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow001Test.java index 9970e0e64..24f2f93f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow002Test.java index 11a9db1bf..44f047ef1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow003Test.java index fe37821fa..72ac81170 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow004Test.java index 28ddc0e30..98c86d374 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow005Test.java index a31a14ef0..583aacaaa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow006Test.java index c8655dcac..7ff603187 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexFlow006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow001Test.java index 3a33cde3d..95a6da1ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow002Test.java index ea689133d..3eece90f5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow003Test.java index e474abaaf..d44286779 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow004Test.java index 4821d8a52..39ae9c814 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow005Test.java index ad2a39ae7..ff7908b9c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow006Test.java index 6aa8ad7bd..16e04c4e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow007Test.java index 3fc7e51aa..2eaac17af 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexGrow007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumSize001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumSize001Test.java index 1ec095a23..3fe43cf8a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumSize001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumSize001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems001Test.java index d76cc8c25..816070b6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems002Test.java index 1eff37333..268e12f37 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems003Test.java index 0f34afbb7..b67ba7fe5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems004Test.java index ae588070f..c2e28799c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems005Test.java index 701b2ad30..c175d9103 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems006Test.java index f3f9e9d24..e4bc67107 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems007Test.java index fd8f430c4..98ec7bee2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems008Test.java index 0dc667db6..431e7c230 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems009Test.java index ad7436d47..95fae5b0f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems010Test.java index ae1e01680..3d9366816 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems011Test.java index 535397e90..a6a2d6681 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems012Test.java index 5afe0950c..a99e5e237 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems013Test.java index 912b69cd8..8391a5116 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems014Test.java index 2c8ccbfbc..f0111dc10 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems016Test.java index 24851b601..88937b44e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexMinimumWidthFlexItems016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink001Test.java index 4f6244894..7a881df9e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink002Test.java index 5b8a1ea4f..0baf2cf3a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink003Test.java index 00d23fad7..046ec137b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink004Test.java index 775ae088e..93e332e35 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink005Test.java index b4e9f4e3e..433335851 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink007Test.java index 2dbfcc434..d8ddcba87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink008Test.java index 8ca85d0a6..2ed7cd09b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexShrink008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexVerticalAlignEffectTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexVerticalAlignEffectTest.java index 27e766fa6..62e1ed5b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexVerticalAlignEffectTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexVerticalAlignEffectTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap002Test.java index e25aaa503..9ae628100 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap003Test.java index 7753bcfc1..12ee163dc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap004Test.java index 75471b5a7..7c477785b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap005Test.java index b78709c9e..0febce089 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap006Test.java index e9b7c5357..6e1e28bfc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrap006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapDefaultTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapDefaultTest.java index 7c058f99b..586037be0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapDefaultTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapDefaultTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapFlexingTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapFlexingTest.java index 1473afb0c..550738757 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapFlexingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapFlexingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz001Test.java index be2231fd3..b85655c01 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz002Test.java index 5a4cf65d8..c9f935999 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapNowrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapNowrapTest.java index 34944fda6..c05823f8d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapNowrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapNowrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapVert001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapVert001Test.java index 6a72506b0..1b06ca872 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapVert001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapVert001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapVert002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapVert002Test.java index 50969c0c1..e059533aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapVert002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapVert002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapWrapReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapWrapReverseTest.java index 50d0b29d1..23f603d72 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapWrapReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapWrapReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapWrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapWrapTest.java index 9a0e17c69..5ca755311 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapWrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexWrapWrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentCenterTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentCenterTest.java index 4a576420f..c6568394b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentCenterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentCenterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentFlexEndTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentFlexEndTest.java index a2b205240..1529daf88 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentFlexEndTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentFlexEndTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentFlexStartTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentFlexStartTest.java index 0084f1b22..8ee01c757 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentFlexStartTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignContentFlexStartTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz001aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz001aTest.java index 61a08bd85..a95225528 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz001aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz001aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz001bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz001bTest.java index 16cf8deb7..46ca09894 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz001bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz001bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz002Test.java index 868c0c3dd..cb613c551 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz003Test.java index 7f91a829c..63b068072 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz004Test.java index 6e06b081d..6c1dec66a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz005Test.java index 27571265e..27e68e5d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz006Test.java index 39d58e9b7..b147a6c09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz007Test.java index a3efd92cb..60493f412 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz008Test.java index 0e22cf9d3..08aa94d27 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfBaselineHoriz008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfStretchVert001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfStretchVert001Test.java index 806a51aae..d80c14e81 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfStretchVert001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfStretchVert001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfStretchVert002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfStretchVert002Test.java index 49ee0fde4..72553c5aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfStretchVert002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxAlignSelfStretchVert002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineAlignSelfBaselineHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineAlignSelfBaselineHoriz001Test.java index b8a0e85bd..19d8d4b93 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineAlignSelfBaselineHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineAlignSelfBaselineHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineAlignSelfBaselineVert001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineAlignSelfBaselineVert001Test.java index 587d95183..b5de0fa11 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineAlignSelfBaselineVert001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineAlignSelfBaselineVert001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineNested001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineNested001Test.java index b9397fc64..c9f28a5c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineNested001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxBaselineNested001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemBaseline001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemBaseline001Test.java index b89b6d410..2dab516e5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemBaseline001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemBaseline001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz001Test.java index 1cd4fcb8a..4b3abde9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz002Test.java index 484959fb4..d3ad93a71 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz003Test.java index bab953478..9574c7105 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxCollapsedItemHoriz003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap001Test.java index 4648ca746..28cb651ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap002Test.java index bb473e797..fde30bd97 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap003Test.java index 05ec7885c..194e92e8c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap004Test.java index 62d4b0a3c..d15f49106 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxColumnRowGap004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnReverseWrapReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnReverseWrapReverseTest.java index 50cde26e6..22ef0bc4a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnReverseWrapReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnReverseWrapReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnReverseWrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnReverseWrapTest.java index 2a81cf0d1..731b28e0a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnReverseWrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnReverseWrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnWrapReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnWrapReverseTest.java index 9aa6c2a48..3c30a44df 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnWrapReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnWrapReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnWrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnWrapTest.java index 377377704..1be06e807 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnWrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowColumnWrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowRowWrapReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowRowWrapReverseTest.java index 121b77ead..63a9ba1dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowRowWrapReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowRowWrapReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowRowWrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowRowWrapTest.java index 1c995032e..c6fceecfd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowRowWrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxFlowRowWrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxItemsAsStackingContexts001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxItemsAsStackingContexts001Test.java index 0d5312014..33673363a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxItemsAsStackingContexts001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxItemsAsStackingContexts001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxItemsAsStackingContexts002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxItemsAsStackingContexts002Test.java index ef16c49ff..814d8c7ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxItemsAsStackingContexts002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxItemsAsStackingContexts002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentCenterOverflowTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentCenterOverflowTest.java index a4beec057..aca49c1ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentCenterOverflowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentCenterOverflowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentCenterTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentCenterTest.java index 6273e61e1..e9bab0473 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentCenterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentCenterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentEndTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentEndTest.java index a8330c00a..b7cb09652 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentEndTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentEndTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentFlexEndTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentFlexEndTest.java index 00580eadc..18a12bad2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentFlexEndTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentFlexEndTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentFlexStartTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentFlexStartTest.java index f5eb3d680..2770a8f88 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentFlexStartTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentFlexStartTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentLeft001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentLeft001Test.java index a11c39e16..e8402146c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentLeft001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentLeft001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentRight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentRight001Test.java index eb29168b7..f34b95e28 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentRight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentRight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentStartTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentStartTest.java index 463e5bfaa..ea734c739 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentStartTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxJustifyContentStartTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoHoriz001Test.java index 65a4f4a6a..d334c9d54 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoHoriz002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoHoriz002Test.java index ba9fb5bbb..4d71195ce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoHoriz002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoHoriz002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoOverflowTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoOverflowTest.java index b1d2bd3df..e0ef2bf53 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoOverflowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoOverflowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoTest.java index 88e93f0af..94242b7a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginAutoTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginLeftExTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginLeftExTest.java index ed866782f..2d3be3a61 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginLeftExTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginLeftExTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginTest.java index e3766dcc9..49384f05d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMarginTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz001ReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz001ReverseTest.java index 97876d6ec..d071853c8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz001ReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz001ReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz001Test.java index 9ad2ee268..58550d6a8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002aTest.java index 83603e620..b7c41368b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002bTest.java index dc20a7cb7..f9fb25a7f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002vTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002vTest.java index 088c4f354..28e2de7e2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002vTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz002vTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz003ReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz003ReverseTest.java index c535c722e..c7caf3cd2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz003ReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz003ReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz003Test.java index 4522cca77..a0eeef8b0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxMbpHoriz003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxOverflowPadding001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxOverflowPadding001Test.java index a596ac321..2b1502d5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxOverflowPadding001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxOverflowPadding001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanOverflowAutomaticTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanOverflowAutomaticTest.java index 4d98638de..eeaefe575 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanOverflowAutomaticTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanOverflowAutomaticTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanOverflowTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanOverflowTest.java index 2d7936b1a..cdbe1db8d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanOverflowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanOverflowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanTest.java index a9f081691..362e18df3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxRowspanTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxVisibilityCollapseLineWrappingTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxVisibilityCollapseLineWrappingTest.java index 7bdf549ce..e7d0e2d8c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxVisibilityCollapseLineWrappingTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxVisibilityCollapseLineWrappingTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxVisibilityCollapseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxVisibilityCollapseTest.java index 95110b9df..4528643c5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxVisibilityCollapseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxVisibilityCollapseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapLongTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapLongTest.java index b4cb601ea..7d1f064ed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapLongTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapLongTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapReverseTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapReverseTest.java index 3e3a08cd3..d9e29a026 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapReverseTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapReverseTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapTest.java index df2850110..8dd031944 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/FlexboxWrapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentCenterTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentCenterTest.java index 10d8570e4..f8edc265d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentCenterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentCenterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentFlexEndTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentFlexEndTest.java index 17759d1d1..3505416b6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentFlexEndTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentFlexEndTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentFlexStartTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentFlexStartTest.java index 770ffdcce..6a23f6f4d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentFlexStartTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentFlexStartTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001aTest.java index 97f22f2df..f383c3f98 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001bTest.java index 6c7243527..27063594d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz002Test.java index 4dbf845a6..09e9faefa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz003Test.java index faec047ec..531244c5f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz004Test.java index 9bd61df73..a5c6ce212 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz005Test.java index dcaacf7d6..ee6b21c19 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz006Test.java index 7f456a1bd..fee111f84 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert001aTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert001aTest.java index 515ec93ed..a54f9b21a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert001aTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert001aTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert001bTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert001bTest.java index ebf347ad7..8b12dccb8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert001bTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert001bTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert002Test.java index 450a45dff..3d2a31e9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert003Test.java index be76c0b49..8295f63b7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert004Test.java index 494495873..11ab64666 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert005Test.java index 32b73013d..7a5799002 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert006Test.java index d3d607b07..2395e6d36 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentVert006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentWmvert001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentWmvert001Test.java index 06d0e248f..289f4193b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentWmvert001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/JustifyContentWmvert001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto001Test.java index 286dca1be..d965bd37c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto003Test.java index abe3993bd..ce76cd04a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto004Test.java index 6da41705f..2d0b21c33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto005Test.java index ca48836dc..badbeacb7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MinWidthAuto005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MultiLineShrinkToFitTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MultiLineShrinkToFitTest.java index cf16d20c9..5c40222e8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MultiLineShrinkToFitTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/MultiLineShrinkToFitTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz001Test.java index 7b192f0fe..20b8b3437 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz002Test.java index 9b6346a45..9451274be 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz003Test.java index b64f564e0..7ddb9fb93 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz004Test.java index dfb108cc0..80a9bd767 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz005Test.java index c2ec34472..8b7574dfc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowHoriz005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert001Test.java index 4579cf993..e2951afcc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert002Test.java index 5ff7c7585..a4360700d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert003Test.java index 9b14a9f75..3927e2388 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert004Test.java index 87c376331..befb3e276 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert005Test.java index 2edc68409..e1c310af9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/OverflowVert005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingHoriz001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingHoriz001Test.java index f0ad9f1d7..9bc53e0c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingHoriz001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingHoriz001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingHoriz002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingHoriz002Test.java index 181c20838..619162feb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingHoriz002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingHoriz002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingVert001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingVert001Test.java index 079adf416..a0ab4b715 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingVert001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingVert001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingVert002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingVert002Test.java index 197cc8fda..38971de3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingVert002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/SizingVert002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchFlexItemCheckboxInputTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchFlexItemCheckboxInputTest.java index b0c191ea9..f22f7d2c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchFlexItemCheckboxInputTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchFlexItemCheckboxInputTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchFlexItemRadioInputTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchFlexItemRadioInputTest.java index a3161c597..2e26ebc9e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchFlexItemRadioInputTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchFlexItemRadioInputTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax001Test.java index 121913453..05202d5ef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax002Test.java index 51315434d..1cfd662d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax003Test.java index 6432224d9..b7e4096f9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_flexbox/StretchObeysMinMax003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/EmptyGridWithinFlexboxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/EmptyGridWithinFlexboxTest.java index 30564313b..1208356a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/EmptyGridWithinFlexboxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/EmptyGridWithinFlexboxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridImportantTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridImportantTest.java index 73ced9ebc..16a0bcb76 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridImportantTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridImportantTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridItemNonAutoHeightStretch001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridItemNonAutoHeightStretch001Test.java index 771fd12a9..091c2b16d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridItemNonAutoHeightStretch001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridItemNonAutoHeightStretch001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridItemPercentageQuirk001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridItemPercentageQuirk001Test.java index 115c1932c..d5a6aecd6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridItemPercentageQuirk001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridItemPercentageQuirk001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridTracksFractionalFrTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridTracksFractionalFrTest.java index d2722d0a4..207e6502f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridTracksFractionalFrTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridTracksFractionalFrTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridTracksStretchedWithDifferentFlexFactorsSumTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridTracksStretchedWithDifferentFlexFactorsSumTest.java index 9f71f9927..69cfe8918 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridTracksStretchedWithDifferentFlexFactorsSumTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridTracksStretchedWithDifferentFlexFactorsSumTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridWithinFlexboxDefiniteChangeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridWithinFlexboxDefiniteChangeTest.java index a20da7fdb..1b2dd064b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridWithinFlexboxDefiniteChangeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/GridWithinFlexboxDefiniteChangeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/MinSizeAutoOverflowClipTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/MinSizeAutoOverflowClipTest.java index 31252cc3f..6254937c2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/MinSizeAutoOverflowClipTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/MinSizeAutoOverflowClipTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/StretchGridItemCheckboxInputTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/StretchGridItemCheckboxInputTest.java index 2d5117794..57516028f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/StretchGridItemCheckboxInputTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/StretchGridItemCheckboxInputTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/StretchGridItemRadioInputTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/StretchGridItemRadioInputTest.java index 17da562ac..95aeec296 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/StretchGridItemRadioInputTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/StretchGridItemRadioInputTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/AbsolutePositioningDefiniteSizes001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/AbsolutePositioningDefiniteSizes001Test.java index e029873a5..f1b75333d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/AbsolutePositioningDefiniteSizes001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/AbsolutePositioningDefiniteSizes001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/AbsolutePositioningGridContainerParent001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/AbsolutePositioningGridContainerParent001Test.java index 14d593c8d..2927f8dc2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/AbsolutePositioningGridContainerParent001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/AbsolutePositioningGridContainerParent001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/DescendantStaticPosition001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/DescendantStaticPosition001Test.java index 6267f56c7..89cfb6382 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/DescendantStaticPosition001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/DescendantStaticPosition001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/DescendantStaticPosition002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/DescendantStaticPosition002Test.java index 1e7e7fe53..9f7e29fae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/DescendantStaticPosition002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/DescendantStaticPosition002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelf001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelf001Test.java index b135d33c0..0b9039203 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelf001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelf001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfImg001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfImg001Test.java index 7d770582b..1b58e4a6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfImg001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfImg001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfSafe001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfSafe001Test.java index fbd40f78b..ed06282b3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfSafe001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfSafe001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfVertWM001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfVertWM001Test.java index aa4007c72..61d085308 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfVertWM001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfVertWM001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfVertWM004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfVertWM004Test.java index f1341a74a..65b261ccd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfVertWM004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposAlignSelfVertWM004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelf001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelf001Test.java index 1d7d121d6..f76a88b59 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelf001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelf001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfImg001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfImg001Test.java index 55d87b4b5..db1fe6543 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfImg001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfImg001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfImg002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfImg002Test.java index 209477053..7c0763027 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfImg002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfImg002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfRtl001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfRtl001Test.java index a7919bdf6..eebc11b20 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfRtl001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfRtl001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfRtl004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfRtl004Test.java index f13c07c53..c5e7f7418 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfRtl004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfRtl004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfVertWM001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfVertWM001Test.java index 8e68e55bd..2ef1f7cf4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfVertWM001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridAbsposStaticposJustifySelfVertWM001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPaintPositionedChildren001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPaintPositionedChildren001Test.java index ed1237c96..a54bbca12 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPaintPositionedChildren001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPaintPositionedChildren001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPositionedItemDynamicChange001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPositionedItemDynamicChange001Test.java index bb6fa6ac5..aceaa3c61 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPositionedItemDynamicChange001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPositionedItemDynamicChange001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPositionedItemsBackground001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPositionedItemsBackground001Test.java index 9a3b9fe45..17cba5fbd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPositionedItemsBackground001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/GridPositionedItemsBackground001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/OrthogonalPositionedGridItems001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/OrthogonalPositionedGridItems001Test.java index a9b9a8c6e..119be36b6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/OrthogonalPositionedGridItems001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/OrthogonalPositionedGridItems001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/OrthogonalPositionedGridItems017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/OrthogonalPositionedGridItems017Test.java index 2128776d9..37fdb3467 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/OrthogonalPositionedGridItems017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/OrthogonalPositionedGridItems017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems001Test.java index 3716f3faa..a09afb24f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems004Test.java index d942ccc26..be2889c95 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems025Test.java index 1e8a076fe..b98a135d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItems025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItemsNegativeIndices001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItemsNegativeIndices001Test.java index d07ddd597..1c7761651 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItemsNegativeIndices001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/abspos/PositionedGridItemsNegativeIndices001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaseline001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaseline001Test.java index 80f484853..6a222e8d4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaseline001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaseline001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineGrid001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineGrid001Test.java index df7d8c17a..b4c19ed5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineGrid001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineGrid001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineMulticol001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineMulticol001Test.java index b789dde11..b997fc00f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineMulticol001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineMulticol001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineOverflow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineOverflow001Test.java index 61a83f76f..974531618 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineOverflow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineOverflow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineVerticalTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineVerticalTest.java index 7327ccab9..040aa604d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineVerticalTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignBaselineVerticalTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentDistributionTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentDistributionTest.java index f78a48605..a7347ad24 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentDistributionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentDistributionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentTest.java index 712e98dc8..971b81bd7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentVerticalLrTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentVerticalLrTest.java index 58f37b365..a7cbfde42 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentVerticalLrTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentVerticalLrTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentVerticalRlTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentVerticalRlTest.java index f405ed512..ff4c0ca1e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentVerticalRlTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridAlignContentVerticalRlTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridContentDistribution001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridContentDistribution001Test.java index 3d69226ec..ccc005efa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridContentDistribution001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridContentDistribution001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridContentDistribution015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridContentDistribution015Test.java index 4bfa86fcc..89a733c60 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridContentDistribution015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridContentDistribution015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridGutters001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridGutters001Test.java index d9f959df9..a0ec236f1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridGutters001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridGutters001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridGutters005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridGutters005Test.java index 88d353d05..02925732e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridGutters005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridGutters005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridItemAutoMargins001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridItemAutoMargins001Test.java index 4a5b0497a..13a091eff 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridItemAutoMargins001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/alignment/GridItemAutoMargins001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMaxSize002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMaxSize002Test.java index f8beb2c6c..38eced50a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMaxSize002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMaxSize002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinMaxSize001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinMaxSize001Test.java index 5630c9cd9..4a8e42909 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinMaxSize001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinMaxSize001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinSize001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinSize001Test.java index 30136de24..1c7c20ac3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinSize001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinSize001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinmaxTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinmaxTest.java index d60e9d498..4ce8b28f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinmaxTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMinmaxTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMultipleValues001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMultipleValues001Test.java index 15f7d716f..a33807c6a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMultipleValues001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatMultipleValues001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatPositionedContainer001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatPositionedContainer001Test.java index 09a34b8ed..a218b8c6b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatPositionedContainer001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridAutoRepeatPositionedContainer001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridLayoutBasicTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridLayoutBasicTest.java index e8267d0a7..86e8c9ee9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridLayoutBasicTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridLayoutBasicTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridLayoutRepeatNotationTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridLayoutRepeatNotationTest.java index b144307e4..a45c2686c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridLayoutRepeatNotationTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridLayoutRepeatNotationTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridSupportNamedGridLines002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridSupportNamedGridLines002Test.java index 679d525ca..1bcbd2354 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridSupportNamedGridLines002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridSupportNamedGridLines002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridTemplateColumnsFitContent001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridTemplateColumnsFitContent001Test.java index 7e51ff189..aaf07c53c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridTemplateColumnsFitContent001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridTemplateColumnsFitContent001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridTemplateRowsFitContent001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridTemplateRowsFitContent001Test.java index 9edc0987b..4c25c09b4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridTemplateRowsFitContent001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_definition/GridTemplateRowsFitContent001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridImgItemPercentMaxHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridImgItemPercentMaxHeight001Test.java index 59ac3dd5e..af477d24b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridImgItemPercentMaxHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridImgItemPercentMaxHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemContainingBlock001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemContainingBlock001Test.java index 337fea4d5..3930cb1fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemContainingBlock001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemContainingBlock001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemFlexContainer001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemFlexContainer001Test.java index 62b8c826d..a34d04dcd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemFlexContainer001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemFlexContainer001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemOverflowAutoMaxHeightPercentageTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemOverflowAutoMaxHeightPercentageTest.java index fed942580..2292465a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemOverflowAutoMaxHeightPercentageTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridItemOverflowAutoMaxHeightPercentageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridMinimumSizeGridItems001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridMinimumSizeGridItems001Test.java index 08e0a08c8..fa9b75f9e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridMinimumSizeGridItems001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridMinimumSizeGridItems001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridMinimumSizeGridItems006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridMinimumSizeGridItems006Test.java index ae7f71b0b..148981561 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridMinimumSizeGridItems006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridMinimumSizeGridItems006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridOrderPropertyAutoPlacement001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridOrderPropertyAutoPlacement001Test.java index 1f49476eb..8cbc233a6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridOrderPropertyAutoPlacement001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/GridOrderPropertyAutoPlacement001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/TableWithInfiniteMaxIntrinsicWidthTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/TableWithInfiniteMaxIntrinsicWidthTest.java index dc3c1650a..d9ea0d355 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/TableWithInfiniteMaxIntrinsicWidthTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_items/TableWithInfiniteMaxIntrinsicWidthTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/ColumnPropertyShouldNotApplyOnGridContainer001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/ColumnPropertyShouldNotApplyOnGridContainer001Test.java index afb0b302b..e4c42ade2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/ColumnPropertyShouldNotApplyOnGridContainer001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/ColumnPropertyShouldNotApplyOnGridContainer001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridContainerIgnoresFirstLetter002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridContainerIgnoresFirstLetter002Test.java index 7045aa444..9b94aaae4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridContainerIgnoresFirstLetter002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridContainerIgnoresFirstLetter002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloat001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloat001Test.java index d8bc2d68c..22c8013d9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloat001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloat001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloat002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloat002Test.java index 2164dd3ce..5d918aa18 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloat002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloat002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloatsNoIntrude001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloatsNoIntrude001Test.java index 5939008e3..0cbbdcf9d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloatsNoIntrude001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridFloatsNoIntrude001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridMarginsNoCollapse001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridMarginsNoCollapse001Test.java index 52b6462c4..b5a1771cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridMarginsNoCollapse001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridMarginsNoCollapse001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridOverflowPadding001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridOverflowPadding001Test.java index 995f5da41..a97e1a3f2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridOverflowPadding001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/grid_model/GridOverflowPadding001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/implicit_grids/GridSupportGridAutoColumnsRows001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/implicit_grids/GridSupportGridAutoColumnsRows001Test.java index 35502ed20..039b588a3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/implicit_grids/GridSupportGridAutoColumnsRows001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/implicit_grids/GridSupportGridAutoColumnsRows001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/implicit_grids/GridSupportGridAutoColumnsRows002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/implicit_grids/GridSupportGridAutoColumnsRows002Test.java index 2e8c7377b..d65e0c146 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/implicit_grids/GridSupportGridAutoColumnsRows002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/implicit_grids/GridSupportGridAutoColumnsRows002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutGridSpanTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutGridSpanTest.java index 9a1daa835..bb873202e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutGridSpanTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutGridSpanTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutLinesShorthandsTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutLinesShorthandsTest.java index efe992619..5816f4c72 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutLinesShorthandsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutLinesShorthandsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutLinesTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutLinesTest.java index 4fd6a4438..675689cf5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutLinesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutLinesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutPlacementShorthandsTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutPlacementShorthandsTest.java index b998be195..cea83f222 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutPlacementShorthandsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_grid/placement/GridLayoutPlacementShorthandsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAfterSpannerStaticPosTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAfterSpannerStaticPosTest.java index af5b4ec8b..df08da108 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAfterSpannerStaticPosTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAfterSpannerStaticPosTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAfterSpannerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAfterSpannerTest.java index 6a2f9bdca..c8b1333ce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAfterSpannerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAfterSpannerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAutoposContainedByViewport1Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAutoposContainedByViewport1Test.java index 8ce280a12..5e3c9671c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAutoposContainedByViewport1Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAutoposContainedByViewport1Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAutoposContainedByViewportTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAutoposContainedByViewportTest.java index a11faf811..3d310455b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAutoposContainedByViewportTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposAutoposContainedByViewportTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposContainingBlockOutsideSpannerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposContainingBlockOutsideSpannerTest.java index 20e0046e5..9e77636e2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposContainingBlockOutsideSpannerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposContainingBlockOutsideSpannerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposMulticolInSecondOuterClippedTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposMulticolInSecondOuterClippedTest.java index 6d682ef57..d84d40f8a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposMulticolInSecondOuterClippedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AbsposMulticolInSecondOuterClippedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AlwaysBalancingBeforeColumnSpanTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AlwaysBalancingBeforeColumnSpanTest.java index 132b6e494..22e3dcf4b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AlwaysBalancingBeforeColumnSpanTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AlwaysBalancingBeforeColumnSpanTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AsColumnFlexItemTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AsColumnFlexItemTest.java index a5c392dcd..d71561612 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AsColumnFlexItemTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AsColumnFlexItemTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AutoFillAutoSize001printTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AutoFillAutoSize001printTest.java index ed542ce0a..9bde35996 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AutoFillAutoSize001printTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AutoFillAutoSize001printTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AutoFillAutoSize002printTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AutoFillAutoSize002printTest.java index f0dd61ec0..b3c0d850b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AutoFillAutoSize002printTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/AutoFillAutoSize002printTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidance1Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidance1Test.java index 05563a696..235de64a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidance1Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidance1Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidance2Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidance2Test.java index 7bd39876e..0f909bbe6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidance2Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidance2Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidanceTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidanceTest.java index da58abdc3..03e4bc2eb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidanceTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceBreakAvoidanceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceExtremelyTallContentCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceExtremelyTallContentCrashTest.java index ef5b2d35e..67b413ed9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceExtremelyTallContentCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceExtremelyTallContentCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceGridContainerRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceGridContainerRefTest.java index 141e655f9..61c29c323 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceGridContainerRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceGridContainerRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceGridContainerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceGridContainerTest.java index 969e8ba99..e1177077c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceGridContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceGridContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceOrphansWidows000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceOrphansWidows000Test.java index f8683a2ba..25c8dfdab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceOrphansWidows000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BalanceOrphansWidows000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline000Test.java index 25fee5c25..e5e1018c5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline001Test.java index 7c8d32345..387c65464 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline002Test.java index 4417c416f..55c1de814 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline003Test.java index 94f93784d..67e1e6a47 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline004Test.java index ba47c2d7b..e4a4bde9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline005Test.java index 0908a2000..092e4efa4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline006Test.java index 037cf481c..b40c26189 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline007Test.java index b95f4c53a..34cafebbf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline008Test.java index be410a7a7..592d8430e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/Baseline008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BrokenColumnRule1Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BrokenColumnRule1Test.java index 9c8ff1af2..80f57ddae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BrokenColumnRule1Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/BrokenColumnRule1Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingPaged001PrintRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingPaged001PrintRefTest.java index 3cf22ef41..5b10131c0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingPaged001PrintRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingPaged001PrintRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingPaged001PrintTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingPaged001PrintTest.java index 9c7a79a6f..63286d290 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingPaged001PrintTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingPaged001PrintTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithOverflowAutoCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithOverflowAutoCrashTest.java index d3ed70731..cd1483797 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithOverflowAutoCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithOverflowAutoCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithSpanAndOOF001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithSpanAndOOF001Test.java index c714f76b4..7d3d87c3a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithSpanAndOOF001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithSpanAndOOF001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithSpanAndOOF002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithSpanAndOOF002Test.java index 4c093fd07..4df89940e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithSpanAndOOF002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnBalancingWithSpanAndOOF002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnCountUsed001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnCountUsed001Test.java index 01f67b401..2aa81dabe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnCountUsed001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnCountUsed001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnFillBalanceOrthogBlock001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnFillBalanceOrthogBlock001Test.java index 2651724f8..e6dba5544 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnFillBalanceOrthogBlock001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnFillBalanceOrthogBlock001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight001Test.java index ef6659218..a4efd23d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight002Test.java index d92a305e3..b8e67444d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight003Test.java index ae93708c3..e7f91649e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ColumnfillAutoMaxHeight003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/CompositedUnderClipUnderMulticolTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/CompositedUnderClipUnderMulticolTest.java index 118ad6008..87ff48498 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/CompositedUnderClipUnderMulticolTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/CompositedUnderClipUnderMulticolTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/EqualGapAndRuleTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/EqualGapAndRuleTest.java index 2ae1a1651..e1123dcde 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/EqualGapAndRuleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/EqualGapAndRuleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FileControlCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FileControlCrashTest.java index 375f3d514..4934e8a32 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FileControlCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FileControlCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInMulticolWithTransformContainerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInMulticolWithTransformContainerTest.java index 589caa35e..2f390f652 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInMulticolWithTransformContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInMulticolWithTransformContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInNestedMulticolTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInNestedMulticolTest.java index 3f15659ce..c6d1b0a94 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInNestedMulticolTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInNestedMulticolTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInNestedMulticolWithViewportTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInNestedMulticolWithViewportTest.java index 0206d7bc0..ec7f478e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInNestedMulticolWithViewportTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedInNestedMulticolWithViewportTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedSizeChildWithOverflowTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedSizeChildWithOverflowTest.java index 79de39b75..1a41fcead 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedSizeChildWithOverflowTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedSizeChildWithOverflowTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB001Test.java index 1f1370104..b1f174d4d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB002Test.java index 4e371ad8b..7e13a0c17 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB003Test.java index b89f24e24..ceec66c3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FixedposStaticPosWithViewportCB003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FloatAndBlockTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FloatAndBlockTest.java index bd72bc198..4d7d13817 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FloatAndBlockTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FloatAndBlockTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FloatWithLineAfterSpannerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FloatWithLineAfterSpannerTest.java index 9ad3f32e9..0f2644259 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FloatWithLineAfterSpannerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/FloatWithLineAfterSpannerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ImgAltAsMulticolCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ImgAltAsMulticolCrashTest.java index 015581127..d7e023476 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ImgAltAsMulticolCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ImgAltAsMulticolCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/InlineBlockAndColumnSpanAllTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/InlineBlockAndColumnSpanAllTest.java index e82aa8238..26ebae3ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/InlineBlockAndColumnSpanAllTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/InlineBlockAndColumnSpanAllTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize001Test.java index bce981451..65d567d48 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize002Test.java index be45c0111..8d695fb0e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize003Test.java index 00a0e4363..ba93d06af 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize004Test.java index ff0a6c5ca..00a7eb1ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize005Test.java index 71011cf56..249ab4e09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/IntrinsicSize005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MozMulticol3ColumnBalancingBreakInsideAvoid1RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MozMulticol3ColumnBalancingBreakInsideAvoid1RefTest.java index 59d09c872..5f9024fbd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MozMulticol3ColumnBalancingBreakInsideAvoid1RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MozMulticol3ColumnBalancingBreakInsideAvoid1RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MozMulticol3ColumnBalancingBreakInsideAvoid1Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MozMulticol3ColumnBalancingBreakInsideAvoid1Test.java index 70b8c3a84..bba2d3ddd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MozMulticol3ColumnBalancingBreakInsideAvoid1Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MozMulticol3ColumnBalancingBreakInsideAvoid1Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic001Test.java index c80303999..a4ec19b71 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic002Test.java index 33e927eb5..9b72c03de 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic003Test.java index dd7b9f893..e143f1928 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic004Test.java index 707513efa..68a25b3a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic005Test.java index cf815bdeb..2c266eb3e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic006Test.java index d361f1f07..0d633238b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic007Test.java index 902f54851..6e04e5d27 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic008Test.java index 65c7abb83..5eef95a34 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBasic008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBlockNoClip001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBlockNoClip001Test.java index 0c7d5dc54..51473fab1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBlockNoClip001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBlockNoClip001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBlockNoClip002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBlockNoClip002Test.java index 137ab3697..6d1a4efae 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBlockNoClip002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBlockNoClip002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBrInsideAvoidcolumn001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBrInsideAvoidcolumn001Test.java index 2da7eec27..e649ecd93 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBrInsideAvoidcolumn001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBrInsideAvoidcolumn001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking000Test.java index b3418fbf2..0cc65680a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking001Test.java index e7d4fdd21..4b9ea3d04 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking002Test.java index 483a1d612..04d0039ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking003Test.java index 3848d2cfa..d74015cf4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking004Test.java index 1ab16f52e..52d0c5839 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking005Test.java index 2d7feb7c6..3d56d43b9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking006Test.java index 52b746cce..cdc57c003 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreaking006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground000Test.java index 9c6628049..91c83fdf8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground001Test.java index f9c7c2ad4..cc66cc63c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground002Test.java index fa585c796..bd5c3d437 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground003Test.java index 4b3beea6c..21b6b1e0d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground004Test.java index aae408e1f..4e707539f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground005Test.java index 271ef176f..7547de653 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolBreakingNobackground005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolClip001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolClip001Test.java index 71ca621f1..af9cecc05 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolClip001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolClip001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolClip002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolClip002Test.java index 81b5cba59..5d967fc63 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolClip002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolClip002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCollapsing001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCollapsing001Test.java index 65a75e8bb..45c1b71c5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCollapsing001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCollapsing001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns001Test.java index 9b2d4575e..dd1cefb83 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns002Test.java index 3d70d3ff9..9abbf2ff9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns003Test.java index 0e5a78f76..f9e137375 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns004Test.java index 856af67d9..17f3b4756 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns006Test.java index d3fe82b24..bf7b3716d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns007Test.java index 61f664190..dbf48583f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumns007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsInvalid001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsInvalid001Test.java index 02abc94b6..e89756d55 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsInvalid001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsInvalid001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsInvalid002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsInvalid002Test.java index ea481e8e4..64599ea82 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsInvalid002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsInvalid002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsToolong001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsToolong001Test.java index 8087c7ac6..658fa3bb5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsToolong001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolColumnsToolong001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContainedAbsoluteRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContainedAbsoluteRefTest.java index c367edd0f..4f6bb8b3c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContainedAbsoluteRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContainedAbsoluteRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContainedAbsoluteTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContainedAbsoluteTest.java index d0cce9726..e1cbf7e70 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContainedAbsoluteTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContainedAbsoluteTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining001Test.java index 740f89bd1..9910867cb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining002Test.java index 50fce943a..c8207e4e1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining003Test.java index 82028bed3..f1c188bab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolContaining003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCount001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCount001Test.java index 7df09beac..177d56444 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCount001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCount001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCount002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCount002Test.java index fc21c9e1b..8aa64821c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCount002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCount002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountComputed003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountComputed003Test.java index 6052ea90b..8bc46f0ed 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountComputed003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountComputed003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountComputed004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountComputed004Test.java index 30eb2e3f6..58253dcb5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountComputed004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountComputed004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNegative001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNegative001Test.java index c16f5e498..62e622f70 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNegative001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNegative001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNegative002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNegative002Test.java index f9e6edbb6..eed4e3287 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNegative002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNegative002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger001Test.java index b0f65a46d..57746aec7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger002Test.java index f81ede571..500f1a630 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger003Test.java index a11b68507..2016b100b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolCountNonInteger003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolDynamicAdd001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolDynamicAdd001RefTest.java index 4d8ad4e5d..a219260e8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolDynamicAdd001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolDynamicAdd001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolDynamicChangeInsideBreakTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolDynamicChangeInsideBreakTest.java index db47fc511..ca02ec1cc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolDynamicChangeInsideBreakTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolDynamicChangeInsideBreakTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFill000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFill000Test.java index 885bc5796..ff0f6a14f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFill000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFill000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFill001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFill001Test.java index a54623537..f185fa129 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFill001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFill001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto001Test.java index 7d870d471..2170f9955 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto002RefTest.java index ac148e7ed..63300384d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto002Test.java index 14935569b..e3593288c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto003Test.java index 67c02f98e..311799e44 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto004Test.java index 8fae9da94..ec40c8462 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAuto004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren001Test.java index 7b04b7cce..4b1ace669 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren002Test.java index 98b4184d9..63f0f749c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren003RefTest.java index 4f2d7a896..bea59badb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren003Test.java index 9e1ebb717..c22168af1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillAutoBlockChildren003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance001RefTest.java index 58f9a8dbf..598c2a042 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance001Test.java index 888e6ee2c..e80effb9b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance002Test.java index 42e35f8cc..fac4d7575 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance003Test.java index b19ee08ae..6e02930fa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance004Test.java index 804e474e4..3857b6d76 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance005Test.java index 3b79b5a7a..23489e099 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance006Test.java index 3cce9e495..d58540a77 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance026Test.java index de356b3e5..410bb79d5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalance026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalanceNested000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalanceNested000Test.java index c1162132b..5c5bf9b66 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalanceNested000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolFillBalanceNested000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGap002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGap002Test.java index b5d2b6355..e089d8d38 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGap002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGap002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGap003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGap003Test.java index 02fae618a..b32605f0e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGap003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGap003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapFraction001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapFraction001Test.java index f2a7959a2..9c9b6218f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapFraction001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapFraction001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapFraction002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapFraction002Test.java index c92ca62bd..564731583 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapFraction002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapFraction002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapLarge001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapLarge001Test.java index 990b5b9b8..45e3228b5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapLarge001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapLarge001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapLarge002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapLarge002Test.java index 63ce41915..9b81ad514 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapLarge002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapLarge002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapNegative001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapNegative001Test.java index b2d233338..070ba3c2d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapNegative001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapNegative001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapPercentage001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapPercentage001Test.java index 882cffd92..2c66fbe64 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapPercentage001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolGapPercentage001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeight001Test.java index 29002ae42..55e274f7c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeight002PrintTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeight002PrintTest.java index e22def31c..17ce59db2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeight002PrintTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeight002PrintTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeightBlockChild001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeightBlockChild001Test.java index c69fe6db5..561f07e96 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeightBlockChild001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolHeightBlockChild001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolInherit001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolInherit001Test.java index ed6bd009e..47cc34248 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolInherit001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolInherit001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolInherit002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolInherit002Test.java index f443464e2..734afa7ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolInherit002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolInherit002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem001Test.java index b0fcd838f..521c46c61 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem003Test.java index ae44b6157..f76c57c19 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem004Test.java index 0f6637477..13a272e04 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem005Test.java index 403fb241a..d4e948379 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem006Test.java index 6542b71bf..ba35bcc39 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem007Test.java index fba605c73..81d677e99 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem008RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem008RefTest.java index 5c17a532d..8a010e7b7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem008RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem008RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem008Test.java index c88d63a30..a1241bcb2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolListItem008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin001Test.java index 36e22be44..0bce20a5d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin002Test.java index b4638f997..215bd7cb6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin003Test.java index 0762e7091..3ae008508 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMargin003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMarginChild001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMarginChild001Test.java index 55f96635c..6a302540e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMarginChild001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolMarginChild001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested002Test.java index 8cdfafc2b..9093f3765 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested005Test.java index 8abbe8340..9a8f3da9a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested007Test.java index ec1439bd6..bd1f02189 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested008Test.java index 7124e2264..248b0fccb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested009Test.java index 48ea9fcd8..f08a85c1f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested010Test.java index e6a0dfb36..408c17896 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested011Test.java index 9cd32c3f4..63750f002 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested013Test.java index 60b2e1ae6..407d4cfdd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested014Test.java index 3b018e975..056601e2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested015Test.java index 24906c78c..abc9a1c7d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested016Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested016Test.java index e86e60140..6e013bae9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested016Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested016Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested017Test.java index 50e83f075..479f5be83 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested018Test.java index b9429db9b..b9b414bfa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested019Test.java index 8b4c02e52..a1c7de320 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested020Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested020Test.java index 80d887ae4..d3a2640dd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested020Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested020Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested021Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested021Test.java index 9d7dee2a3..264feedf5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested021Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested021Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested022Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested022Test.java index 724ccb98e..dbc8ae150 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested022Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested022Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested023Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested023Test.java index 47052b144..78b6ca626 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested023Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested023Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested024Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested024Test.java index f0153b7c0..2014120ce 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested024Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested024Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested025Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested025Test.java index f74077658..3d103155e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested025Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested025Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested026Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested026Test.java index bd8592b1e..8f50fd0a0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested026Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested026Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested027Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested027Test.java index 161334c54..06a1e4d45 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested027Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested027Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested028Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested028Test.java index b7d226ec6..6b2540c15 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested028Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested028Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested029Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested029Test.java index dc29b9872..5b7c8840a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested029Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested029Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested030Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested030Test.java index 86d0da134..976041a97 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested030Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested030Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested031Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested031Test.java index dd327c5e8..89245d35c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested031Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNested031Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule001Test.java index 1677c1091..16b042395 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule002Test.java index 095a7e276..02b4fba00 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule003Test.java index a6fcf9620..9f3016773 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedColumnRule003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin001Test.java index a15ba4973..ae28a2496 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin002Test.java index 447832eac..ca6805427 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin003Test.java index 0fc9dd579..0f372c077 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin004Test.java index a13166c38..752443d9d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin005Test.java index 0c9ee07fa..caff5ea48 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolNestedMargin005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOofInlineCb001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOofInlineCb001Test.java index 55acf73cb..41279e1e9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOofInlineCb001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOofInlineCb001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOofInlineCb002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOofInlineCb002Test.java index 897d72882..9030f5b7f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOofInlineCb002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOofInlineCb002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflow000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflow000Test.java index 94aba560f..ecf2c0a6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflow000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflow000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipAutoSizedRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipAutoSizedRefTest.java index f3d7a537f..2bd7b221d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipAutoSizedRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipAutoSizedRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipAutoSizedTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipAutoSizedTest.java index cc2ab3407..3a99fb430 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipAutoSizedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipAutoSizedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipPositionedRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipPositionedRefTest.java index e99eb61f4..d4c8cfe87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipPositionedRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipPositionedRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipPositionedTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipPositionedTest.java index 7ae127697..6aaf639d4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipPositionedTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipPositionedTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipRefTest.java index e523708aa..76848a84b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipTest.java index 5b7cbd70c..5f7556491 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowClipTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowPositionedTransform001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowPositionedTransform001Test.java index 65edf2146..2969f9161 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowPositionedTransform001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolOverflowPositionedTransform001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule002Test.java index e8d809d78..d5d1aa3d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule003Test.java index a1256e060..c564a494d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule004Test.java index 36d78d8a6..ebd1eb383 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRule004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColor001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColor001Test.java index b481d3306..abb7cbbd2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColor001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColor001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColorInherit001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColorInherit001Test.java index 11657c21f..6e35cae22 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColorInherit001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColorInherit001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColorInherit002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColorInherit002Test.java index 5c18af70f..d441f9469 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColorInherit002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleColorInherit002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDashed000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDashed000Test.java index 6742730c7..080b4a4ef 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDashed000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDashed000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDotted000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDotted000Test.java index ca5126351..8032d199a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDotted000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDotted000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDouble000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDouble000Test.java index 4c7e092f6..215c9f495 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDouble000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleDouble000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction001Test.java index 51c53df2b..4c9339510 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction002Test.java index e18de1597..b021a0461 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction003Test.java index 3246a5682..df894eadd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleFraction003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleGroove000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleGroove000Test.java index d01317cde..27a5daab8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleGroove000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleGroove000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleHidden000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleHidden000Test.java index ee1278094..ce23487a3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleHidden000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleHidden000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleInset000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleInset000Test.java index 9a2addd2c..03c696aa5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleInset000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleInset000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleLarge001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleLarge001Test.java index 038c7d96d..5241ea617 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleLarge001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleLarge001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleLarge002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleLarge002Test.java index 0f9f3e207..07adcb344 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleLarge002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleLarge002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing001RefTest.java index e76357916..e8f8e4698 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing001Test.java index 53876dff7..e4fc06b49 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing002RefTest.java index 31786aa57..a882e700b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing002Test.java index d23159207..e7bf9a902 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing003RefTest.java index f6a29c1a4..22c3dd4e3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing003Test.java index 9c4f5ac35..2470e9b45 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing004RefTest.java index 9f29172b1..fbe266ab1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing004Test.java index e762694a1..d15c913a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNestedBalancing004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNone000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNone000Test.java index 51d1c3ad5..9f67b0ad6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNone000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleNone000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleOutset000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleOutset000Test.java index 30ff54084..f8fc77245 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleOutset000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleOutset000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRulePercent001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRulePercent001Test.java index bc3e6643b..f21e3aebe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRulePercent001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRulePercent001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRulePx001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRulePx001Test.java index d59a99101..ca6ec3d6d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRulePx001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRulePx001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleRidge000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleRidge000Test.java index 9e1719e45..427626f0a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleRidge000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleRidge000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleSamelength001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleSamelength001Test.java index 90557fb33..fc7ce23f4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleSamelength001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleSamelength001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleShorthand001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleShorthand001Test.java index 25222c1af..163209e1a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleShorthand001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleShorthand001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleShorthand2Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleShorthand2Test.java index 1ac1ceab9..772201699 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleShorthand2Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleShorthand2Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleSolid000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleSolid000Test.java index 776acb619..80f0017b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleSolid000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleSolid000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleStacking001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleStacking001Test.java index 26c2410f5..83caa9bbb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleStacking001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolRuleStacking001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolScrollContentTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolScrollContentTest.java index 33266cec4..738378d46 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolScrollContentTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolScrollContentTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolShorthand001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolShorthand001Test.java index d7ea59006..02234651f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolShorthand001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolShorthand001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll001Test.java index f0b7fe15a..16b2b9dff 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll002Test.java index bf52c4776..f77be824c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll003Test.java index 21ded66f8..0a43dbb81 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll004RefTest.java index fea2f05bd..aa781eae8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll004Test.java index e49ab9cfb..66a20227a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll005RefTest.java index 422c1dcb1..6d4d2f9c6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll005Test.java index 590dbcd25..5fe71c5e5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll006RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll006RefTest.java index a9203af54..be853567a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll006RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll006RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll006Test.java index 64df1bb53..47745abc1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll007RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll007RefTest.java index 530659cbb..e528dcfca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll007RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll007RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll007Test.java index a710c7faf..5f46da252 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll008RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll008RefTest.java index 425ceba42..09cfcb3b3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll008RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll008RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll008Test.java index 22fc29b1d..169d113c3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll009RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll009RefTest.java index 37cf9f3c6..fa56e87ac 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll009RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll009RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll009Test.java index 7c592a19c..7cd6500e8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll010RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll010RefTest.java index 460f82fba..78693114b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll010RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll010RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll010Test.java index 4f7f2ca9f..8bd840843 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll011RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll011RefTest.java index 3c10c391c..f3eaa033d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll011RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll011RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll011Test.java index 14d542af2..c784d3623 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll012Test.java index d0285235e..63b75ee7a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll013Test.java index 5604b5e77..79255dfba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll014Test.java index 3eff04214..ff02109ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll015Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll015Test.java index 2091d8e9c..744fe77a8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll015Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll015Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll017Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll017Test.java index d395b6b93..4d9a212f6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll017Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll017Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll018Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll018Test.java index 9eb861c7c..599a5b73a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll018Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll018Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll019Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll019Test.java index 8ca9127a6..79596905f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll019Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAll019Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllBlockSibling003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllBlockSibling003Test.java index 04c7a425a..22d79b40f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllBlockSibling003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllBlockSibling003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton001RefTest.java index 2fb2c64df..f5445bfb9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton001Test.java index f6b1c21e9..b59d13d06 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton002RefTest.java index bdb79d730..02068fb15 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton002Test.java index d11ed8fe6..b6919384f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton003RefTest.java index eff95a5e9..db85331d7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton003Test.java index 61a2a971a..d7fdf1a26 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllButton003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight001Test.java index 2f5287086..8baf85a3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight002RefTest.java index 45a0f5e72..a121cf17c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight002Test.java index 7c70eab7f..20f001f91 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight003RefTest.java index 7e257bda4..9ee3c0b88 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight003Test.java index 769200073..fdee1afe8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004ARefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004ARefTest.java index 58f626c16..85307c6a8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004ARefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004ARefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004ATest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004ATest.java index 6cb1da5c7..5c9cb51ab 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004ATest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004ATest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004BRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004BRefTest.java index 58bf85d50..c0a79b4fb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004BRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004BRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004BTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004BTest.java index a71c84398..fd3b55ea3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight004BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight005RefTest.java index f9cf2d53c..bd2772108 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight005Test.java index 1610e9872..412b0562b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight006RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight006RefTest.java index 47991c03d..eeace2c9c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight006RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight006RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight006Test.java index aabc26e98..2fb1a0ac7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight007RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight007RefTest.java index 4e880e3f0..9d7ba5127 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight007RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight007RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight007Test.java index 140e0cb2f..c8c204b10 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight008RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight008RefTest.java index 8e4dde97d..e691c5fc1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight008RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight008RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight008Test.java index 05724bf47..0b6dd3b73 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight009Test.java index 0bf3e2463..e460fc135 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight010Test.java index ed8571899..1bd8436a8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight011Test.java index 3a890e51d..62f24818b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight012Test.java index 87d6c97d1..05d17387b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight013Test.java index 8a455091d..2fe6b1209 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllChildrenHeight013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd001RefTest.java index e647659e2..5eb41b68f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd002RefTest.java index 58130428e..71623cf62 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd003RefTest.java index 325aa3121..2522447c2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd004RefTest.java index de8e979a1..148221f78 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd007RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd007RefTest.java index c2cc09cb3..81ae5f5ee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd007RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd007RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd008RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd008RefTest.java index f9bff3825..f6ecb6bfe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd008RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd008RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd010RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd010RefTest.java index b60e68a0e..7679db7e6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd010RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd010RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd012RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd012RefTest.java index c8a354b40..73f0193c0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd012RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd012RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd013RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd013RefTest.java index 3a35e72f8..1c1715c34 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd013RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicAdd013RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove001RefTest.java index cb9b7b8cb..a1820c5d6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove002RefTest.java index ddd7a7327..1e9be91f3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove004RefTest.java index 3d247f73e..d5c2e5e06 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove005RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove005RefTest.java index d4490cc26..3e61f856b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove005RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllDynamicRemove005RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset001RefTest.java index 81e38b4e8..6c1fcc9b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset001Test.java index 447e8b6ae..dc1e623d8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset002RefTest.java index 23aaae528..27384b829 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset002Test.java index 638d68b1e..0c894d9e7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset003RefTest.java index bd378dce0..9be8ed8fd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset003Test.java index ac82ac4ed..b3a74e612 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllFieldset003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllListItem001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllListItem001Test.java index 0ef3bff57..d557ea302 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllListItem001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllListItem001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllListItem002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllListItem002Test.java index b7a1a94c8..3dd4c40cd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllListItem002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllListItem002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin001Test.java index 1caae2a89..79c64c303 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin002Test.java index 3528ad6a5..4ac898a09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin003Test.java index 6da143d9a..607c6601f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMargin003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginBottom001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginBottom001Test.java index dfaa96440..64c5db50c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginBottom001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginBottom001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNested001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNested001Test.java index 78bad7ad4..446d960a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNested001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNested001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNested002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNested002Test.java index b58296c9e..d5281a419 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNested002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNested002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNestedFirstchild001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNestedFirstchild001Test.java index 9be440095..830279231 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNestedFirstchild001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllMarginNestedFirstchild001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle001RefTest.java index 823283684..f203109bf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle002RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle002RefTest.java index 484506ede..be7068423 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle002RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle002RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle003RefTest.java index 2da1d816e..96483535f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle004RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle004RefTest.java index 6276e4908..d3d782aa1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle004RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRestyle004RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRule001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRule001RefTest.java index 3e081d659..fa7598660 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRule001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRule001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRule001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRule001Test.java index 3f9d3255b..8eccb8abc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRule001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanAllRule001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat001Test.java index 246c69b09..420d6885a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat002Test.java index fca5ec975..794d42d85 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat003Test.java index db974548c..45c3fd839 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanFloat003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanNone001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanNone001Test.java index c97c3e336..48bea8ca0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanNone001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolSpanNone001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolUnderVerticalRlScrollTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolUnderVerticalRlScrollTest.java index c3a406c1a..4894bfcb2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolUnderVerticalRlScrollTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolUnderVerticalRlScrollTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth001Test.java index 14a6b8900..644e06860 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth002Test.java index 97d92e56a..15e11ff58 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth003Test.java index 23ec9b991..d28f33b12 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth004Test.java index 45f4e6eab..34c5ba0fc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth005Test.java index 4322465c3..08514e2ee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidth005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCh001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCh001Test.java index f0a3df683..37f059710 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCh001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCh001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCount001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCount001Test.java index 59c4f6478..b8c31c5df 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCount001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCount001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCount002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCount002Test.java index d4da7e0fa..889dcfa35 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCount002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthCount002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthInvalid001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthInvalid001Test.java index 9d431713b..506f7e749 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthInvalid001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthInvalid001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthLarge001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthLarge001Test.java index f2cfebf89..2416a734f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthLarge001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthLarge001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthLarge002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthLarge002Test.java index da06ccb22..f818f0112 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthLarge002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthLarge002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthNegative001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthNegative001Test.java index 89587059d..139b7d24c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthNegative001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthNegative001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthSmall001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthSmall001Test.java index 015980442..bbf37c2c7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthSmall001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolWidthSmall001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight001Test.java index 31f1ee063..91578cba9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight002Test.java index 8aebb38ab..d3a672885 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight003RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight003RefTest.java index 5086d9b17..ac6fec60b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight003RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight003RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight003Test.java index 4dc817f80..2acb16287 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/MulticolZeroHeight003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NamedPageTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NamedPageTest.java index 2ee2169a9..800d162c9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NamedPageTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NamedPageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAfterFloatClearanceTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAfterFloatClearanceTest.java index 809f9ac34..00f148709 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAfterFloatClearanceTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAfterFloatClearanceTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsFieldsetTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsFieldsetTest.java index 2f57a88e3..943207979 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsFieldsetTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsFieldsetTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsFloatTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsFloatTest.java index 2746b668a..72f703777 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsFloatTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsFloatTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsLegendTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsLegendTest.java index ff096fa8f..d26b77f15 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsLegendTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedAtOuterBoundaryAsLegendTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedBalancedMulticolCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedBalancedMulticolCrashTest.java index 59a60afe2..8690d37a1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedBalancedMulticolCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedBalancedMulticolCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedBalancedVeryTallContentCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedBalancedVeryTallContentCrashTest.java index e8eeb1424..24216fd29 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedBalancedVeryTallContentCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedBalancedVeryTallContentCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedFloatMulticolMonolithicChildTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedFloatMulticolMonolithicChildTest.java index 2ba4edb07..50d9b0fdd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedFloatMulticolMonolithicChildTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedFloatMulticolMonolithicChildTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedFloatedShapeCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedFloatedShapeCrashTest.java index 8643e07ff..cb0971da1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedFloatedShapeCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedFloatedShapeCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedMulticolWithTransformContainerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedMulticolWithTransformContainerTest.java index fbf6712d2..961c074aa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedMulticolWithTransformContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedMulticolWithTransformContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedOofsInRelativeMulticolTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedOofsInRelativeMulticolTest.java index 4ebc48a08..b5cc88fe9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedOofsInRelativeMulticolTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedOofsInRelativeMulticolTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedPastFragmentationLineTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedPastFragmentationLineTest.java index 1d9f1ee65..681b71f4d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedPastFragmentationLineTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedPastFragmentationLineTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithOverflowingPaddingCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithOverflowingPaddingCrashTest.java index e3fe1c7f2..ce9176ae8 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithOverflowingPaddingCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithOverflowingPaddingCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithPaddingAndSpannerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithPaddingAndSpannerTest.java index b9033fbb0..a8574aef7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithPaddingAndSpannerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithPaddingAndSpannerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithTooTallLineTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithTooTallLineTest.java index 7bccde016..79a33badf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithTooTallLineTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NestedWithTooTallLineTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NoBalancingAfterColumnSpanTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NoBalancingAfterColumnSpanTest.java index 35c83b01c..37802bd39 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NoBalancingAfterColumnSpanTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NoBalancingAfterColumnSpanTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NonAdjacentSpanners000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NonAdjacentSpanners000Test.java index 54abe08e8..47dc467a7 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NonAdjacentSpanners000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NonAdjacentSpanners000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NonAdjacentSpanners001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NonAdjacentSpanners001Test.java index 8df92e49a..4c60c0bb2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NonAdjacentSpanners001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/NonAdjacentSpanners001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OofNestedInSingleColumnTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OofNestedInSingleColumnTest.java index ee169ee3b..c2e0b3dc9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OofNestedInSingleColumnTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OofNestedInSingleColumnTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OrthogonalWritingModeShrinkToFitTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OrthogonalWritingModeShrinkToFitTest.java index 0dcda5386..4c4862c35 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OrthogonalWritingModeShrinkToFitTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OrthogonalWritingModeShrinkToFitTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OrthogonalWritingModeSpannerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OrthogonalWritingModeSpannerTest.java index b2d9e4fe9..f61fa1547 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OrthogonalWritingModeSpannerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OrthogonalWritingModeSpannerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowScrollInMulticolCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowScrollInMulticolCrashTest.java index 9bd25b665..1b1367506 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowScrollInMulticolCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowScrollInMulticolCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable001Test.java index 8abb55ab0..afef46173 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable002Test.java index 9c664d739..9da6507ea 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable003Test.java index ef0ccbc09..e6e222db4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/OverflowUnsplittable003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/PagePropertyIgnoredTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/PagePropertyIgnoredTest.java index 150a315ab..f715dbd5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/PagePropertyIgnoredTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/PagePropertyIgnoredTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ParallelFlowAfterSpanner001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ParallelFlowAfterSpanner001Test.java index 5d81df4a2..d5f2610ec 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ParallelFlowAfterSpanner001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ParallelFlowAfterSpanner001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ParallelFlowAfterSpanner002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ParallelFlowAfterSpanner002Test.java index b43a53506..994370daa 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ParallelFlowAfterSpanner002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ParallelFlowAfterSpanner002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/RelativeChildOverflowingColumnGapTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/RelativeChildOverflowingColumnGapTest.java index 20ae44a44..7cf5c1a53 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/RelativeChildOverflowingColumnGapTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/RelativeChildOverflowingColumnGapTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/RelativeChildOverflowingContainerTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/RelativeChildOverflowingContainerTest.java index 8e2f1b316..97e94e4a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/RelativeChildOverflowingContainerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/RelativeChildOverflowingContainerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ReplacedContentSpannerAutoWidthTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ReplacedContentSpannerAutoWidthTest.java index fe7e03590..3cbdd3c9e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ReplacedContentSpannerAutoWidthTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ReplacedContentSpannerAutoWidthTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation000Test.java index b3d2e83d6..79bc996b5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation001Test.java index f07134713..624648a54 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation002Test.java index 2ab6ddc19..1a76fb3d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation003Test.java index 5a5c4b51a..89ba1d02f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation004Test.java index d05e8b87f..ea4e9a754 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation005Test.java index a43437060..b7824a99f 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation006Test.java index fa874a7aa..9c0bef4bd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation007Test.java index 004567227..741c315ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation008Test.java index fc3d361b2..0446c0a16 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation009Test.java index d3fbdb178..3eb9a6fe6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation010Test.java index 72b96a30c..73542b93c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation011Test.java index 1e82fae66..c4dce637c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerFragmentation011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow001Test.java index 5cd8cb537..eccb12bd1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow002Test.java index e4befa19f..89a6b4285 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow003Test.java index 6e8ac62b9..bed772a1d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow004Test.java index 6b536f72f..f8098ed0a 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInChildAfterParallelFlow004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInOpacityTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInOpacityTest.java index 31e4cd18d..f46649a40 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInOpacityTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpannerInOpacityTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpanningLegend000CrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpanningLegend000CrashTest.java index 12b4297f3..b38085662 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpanningLegend000CrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SpanningLegend000CrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SubpixelColumnRuleWidthTentativeTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SubpixelColumnRuleWidthTentativeTest.java index 426df71be..532254f33 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SubpixelColumnRuleWidthTentativeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/SubpixelColumnRuleWidthTentativeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/TriplyNestedFixedposInAbsposCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/TriplyNestedFixedposInAbsposCrashTest.java index 535992060..65719ecd6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/TriplyNestedFixedposInAbsposCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/TriplyNestedFixedposInAbsposCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ZeroColumnWidthLayoutTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ZeroColumnWidthLayoutTest.java index b788df74e..6edb4ad14 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ZeroColumnWidthLayoutTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/ZeroColumnWidthLayoutTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/BreakafterBeforeTableCrashTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/BreakafterBeforeTableCrashTest.java index 192165b36..623cd9214 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/BreakafterBeforeTableCrashTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/BreakafterBeforeTableCrashTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCell001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCell001RefTest.java index c78e3ce04..0737140ca 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCell001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCell001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCell001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCell001Test.java index 329cd435b..a87a91b7c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCell001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCell001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight001RefTest.java index 5113c96c7..c7eb8c688 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight001Test.java index 7352b5d78..d11f6e344 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight002Test.java index 083dac848..5ab0e6c42 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellHeight002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellVerticalAlign01Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellVerticalAlign01Test.java index 630b5cadd..67a647fb2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellVerticalAlign01Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellVerticalAlign01Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellVerticalAlignRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellVerticalAlignRefTest.java index 531bcf6e2..0ddf720b6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellVerticalAlignRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/MulticolTableCellVerticalAlignRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellAsMulticolRefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellAsMulticolRefTest.java index b67c03bc7..f9882b4bc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellAsMulticolRefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellAsMulticolRefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellAsMulticolTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellAsMulticolTest.java index 6c3639fa7..aeaed6288 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellAsMulticolTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellAsMulticolTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellContentChange000RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellContentChange000RefTest.java index a7615f1c4..12757dbe5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellContentChange000RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellContentChange000RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellContentChange001RefTest.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellContentChange001RefTest.java index 229ce0286..751d44ff0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellContentChange001RefTest.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellContentChange001RefTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested001Test.java index f2e6603f6..3c9626dee 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested002Test.java index f99ef78e8..3ce491327 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested003Test.java index 29ec21b31..0e83f6442 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_multicol/table/TableCellMulticolNested003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageBackground000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageBackground000Test.java index efc194eae..34f2afa95 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageBackground000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageBackground000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageBorders000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageBorders000Test.java index 46cff9953..c6259a94e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageBorders000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageBorders000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageMargin003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageMargin003Test.java index 04f2738ef..c1096e3c1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageMargin003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageMargin003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageProperties000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageProperties000Test.java index fc0da59e3..321f3d794 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageProperties000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageProperties000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize000Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize000Test.java index 7805302dc..b3ff31cb5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize000Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize000Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize001Test.java index 0827b83dd..d24762a22 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize002Test.java index 82e2d5ee6..0655e6a22 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize003Test.java index e383ce2eb..7ed00ce97 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize004Test.java index 36d89ae9c..30fe2acdf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize005Test.java index b7fc8b3e3..126271d07 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize006Test.java index a1c58b8c5..b7bcdc985 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize007Test.java index c07df4013..80767d8be 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize008Test.java index 1903e0974..6768d2dbe 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize009Test.java index b2596242a..355163c49 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize010Test.java index 29893f70a..7076120fb 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_page_3/PageSize010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline001Test.java index 17a59cd5b..f94523172 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline002Test.java index 63cbee2d5..7d47c0cba 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline007Test.java index c11b77a4e..2bcb8f3d1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline008Test.java index d055f3604..1c6cbc525 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline009Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline009Test.java index d03d7cffb..775e8d5fc 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline009Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline009Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline010Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline010Test.java index a18e1da01..0e73bb83c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline010Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline010Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline012Test.java index 42fe0e42b..dfa8d89b1 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/Outline012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineColor001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineColor001Test.java index 6e00e2d4b..4c63eea5c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineColor001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineColor001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineOffset001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineOffset001Test.java index 18fc248a4..77a527cf4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineOffset001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineOffset001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle011Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle011Test.java index 9ac9d7984..35ea5ea47 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle011Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle011Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle012Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle012Test.java index cfd562723..4c26f1180 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle012Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle012Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle013Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle013Test.java index 91d9e9d76..7c88dad87 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle013Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle013Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle014Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle014Test.java index 03841ea13..8dd843f25 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle014Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/css_ui_3/OutlineStyle014Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Directory4Byte001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Directory4Byte001Test.java index 398f92060..8c5da9e09 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Directory4Byte001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Directory4Byte001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryCompLength001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryCompLength001Test.java index e38e07ca2..ab35b8667 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryCompLength001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryCompLength001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOrigLength001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOrigLength001Test.java index 1fd618ce0..b8f078274 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOrigLength001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOrigLength001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOrigLength002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOrigLength002Test.java index 2bdb83ceb..18f57fd1d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOrigLength002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOrigLength002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps001Test.java index 4a8a80552..a6a8a95a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps002Test.java index a8d54e8c7..13bb3dfd3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps005Test.java index eafb7fab6..758b1381d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/DirectoryOverlaps005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderLength001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderLength001Test.java index 70a1bba65..ba39bf608 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderLength001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderLength001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderLength002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderLength002Test.java index 0d7798e44..8de8d3bd0 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderLength002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderLength002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderNumTables001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderNumTables001Test.java index 2bbdad360..91391733d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderNumTables001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderNumTables001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderReserved001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderReserved001Test.java index b9be67863..e17b7c6c4 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderReserved001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderReserved001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderSignature001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderSignature001Test.java index 36464eb0c..ad818ea54 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderSignature001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderSignature001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize001Test.java index c5066ca7c..a1721cfff 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize002Test.java index 6aa18d5bd..4572627a9 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize003Test.java index edacddcbd..6e4d57271 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/HeaderTotalSfntSize003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/PrivatedataNoeffect001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/PrivatedataNoeffect001Test.java index f4017967b..0f0a75538 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/PrivatedataNoeffect001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/PrivatedataNoeffect001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/PrivatedataNoeffect002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/PrivatedataNoeffect002Test.java index 43710f627..b590991a5 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/PrivatedataNoeffect002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/PrivatedataNoeffect002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression001Test.java index c3f6dfd1b..474f00352 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression002Test.java index 522a62fe0..a6148defd 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression003Test.java index 66d2cd0f8..e02b06c4e 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression004Test.java index 7f54ba8bf..6d0bcaa4d 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataCompression004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataZlib001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataZlib001Test.java index 3c27de698..bd1351abf 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataZlib001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/TabledataZlib001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid001Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid001Test.java index 75ae72f1d..d122b035c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid001Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid001Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid002Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid002Test.java index 701349b68..a336d71d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid002Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid002Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid003Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid003Test.java index 043a36857..a0bf3216b 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid003Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid003Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid004Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid004Test.java index 5fa081e6e..3d7df5b0c 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid004Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid004Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid005Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid005Test.java index 6adb9a0b8..50eb00ef3 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid005Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid005Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid006Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid006Test.java index ecaa4977a..b26cc3e88 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid006Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid006Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid007Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid007Test.java index b7273cc39..882bc3331 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid007Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid007Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid008Test.java b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid008Test.java index 1438a8a7e..cc731dfd6 100644 --- a/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid008Test.java +++ b/src/test/java/com/itextpdf/html2pdf/css/w3c/woff/Valid008Test.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/AbbrTest.java b/src/test/java/com/itextpdf/html2pdf/element/AbbrTest.java index 35ee1fa2f..8a59a283a 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/AbbrTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/AbbrTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/AddressTest.java b/src/test/java/com/itextpdf/html2pdf/element/AddressTest.java index 15ce076c4..adcbc1ded 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/AddressTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/AddressTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ArticleTest.java b/src/test/java/com/itextpdf/html2pdf/element/ArticleTest.java index 3a30ffb3d..dbb881c76 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ArticleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ArticleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/AsideTest.java b/src/test/java/com/itextpdf/html2pdf/element/AsideTest.java index a5cf2ea3e..213600bde 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/AsideTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/AsideTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/BTest.java b/src/test/java/com/itextpdf/html2pdf/element/BTest.java index 7b8586439..3f89b00bb 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/BTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/BTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/BdoTest.java b/src/test/java/com/itextpdf/html2pdf/element/BdoTest.java index dfbf471d7..5f6ef1326 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/BdoTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/BdoTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/BlockquoteTest.java b/src/test/java/com/itextpdf/html2pdf/element/BlockquoteTest.java index 06932b5e8..d6d108ca9 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/BlockquoteTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/BlockquoteTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/BodyTest.java b/src/test/java/com/itextpdf/html2pdf/element/BodyTest.java index 05c1f7d6c..97b7a9b38 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/BodyTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/BodyTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/BrTest.java b/src/test/java/com/itextpdf/html2pdf/element/BrTest.java index 5dcb127c8..c3fba036e 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/BrTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/BrTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/CaptionTest.java b/src/test/java/com/itextpdf/html2pdf/element/CaptionTest.java index 0c6439ec5..59bc9ec9c 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/CaptionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/CaptionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/CenterTest.java b/src/test/java/com/itextpdf/html2pdf/element/CenterTest.java index f1f77cf3c..1d9650760 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/CenterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/CenterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/CiteTest.java b/src/test/java/com/itextpdf/html2pdf/element/CiteTest.java index 4f83050ef..e85f19117 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/CiteTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/CiteTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/CodeTest.java b/src/test/java/com/itextpdf/html2pdf/element/CodeTest.java index 0ef823b6d..de0bdd8c5 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/CodeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/CodeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ColColgroupTest.java b/src/test/java/com/itextpdf/html2pdf/element/ColColgroupTest.java index 8e482b6c5..b903a6e20 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ColColgroupTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ColColgroupTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/DelTest.java b/src/test/java/com/itextpdf/html2pdf/element/DelTest.java index 245575102..f1ec92430 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/DelTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/DelTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/DfnTest.java b/src/test/java/com/itextpdf/html2pdf/element/DfnTest.java index 93368a753..fe96f88d2 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/DfnTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/DfnTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/DivTest.java b/src/test/java/com/itextpdf/html2pdf/element/DivTest.java index ab31e1de0..674c20524 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/DivTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/DivTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/EmTest.java b/src/test/java/com/itextpdf/html2pdf/element/EmTest.java index 9b1f2982a..e336faa6c 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/EmTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/EmTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/FigureTest.java b/src/test/java/com/itextpdf/html2pdf/element/FigureTest.java index bcaab18f3..c03b6b74e 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/FigureTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/FigureTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/FormTest.java b/src/test/java/com/itextpdf/html2pdf/element/FormTest.java index 0cec64ae9..b684f3428 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/FormTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/FormTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/HTest.java b/src/test/java/com/itextpdf/html2pdf/element/HTest.java index 8aeb1cc9a..9d7491f2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/HTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/HTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/HeaderFooterTest.java b/src/test/java/com/itextpdf/html2pdf/element/HeaderFooterTest.java index 34345c50f..319b64f55 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/HeaderFooterTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/HeaderFooterTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/HrTest.java b/src/test/java/com/itextpdf/html2pdf/element/HrTest.java index c3da659a9..dc30c4314 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/HrTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/HrTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/HtmlTest.java b/src/test/java/com/itextpdf/html2pdf/element/HtmlTest.java index 56ff5c4ac..f8c5d2c57 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/HtmlTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/HtmlTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ITest.java b/src/test/java/com/itextpdf/html2pdf/element/ITest.java index 4d8aa462d..91494b37e 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ITest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ITest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ImageTest.java b/src/test/java/com/itextpdf/html2pdf/element/ImageTest.java index 2a7659172..94a338ff5 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ImageTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ImageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/InputTest.java b/src/test/java/com/itextpdf/html2pdf/element/InputTest.java index fb9b11a0d..e5a483531 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/InputTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/InputTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/InsTest.java b/src/test/java/com/itextpdf/html2pdf/element/InsTest.java index 3773eece9..eaaa7b04b 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/InsTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/InsTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/KbdTest.java b/src/test/java/com/itextpdf/html2pdf/element/KbdTest.java index e7881211a..5e4210250 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/KbdTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/KbdTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/LabelTest.java b/src/test/java/com/itextpdf/html2pdf/element/LabelTest.java index f1c43b39f..d29e7fe58 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/LabelTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/LabelTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/LinkTest.java b/src/test/java/com/itextpdf/html2pdf/element/LinkTest.java index 51c1f3572..3d2bd2753 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/LinkTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/LinkTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ListItemTest.java b/src/test/java/com/itextpdf/html2pdf/element/ListItemTest.java index c4efad882..00dd0f0be 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ListItemTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ListItemTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ListTest.java b/src/test/java/com/itextpdf/html2pdf/element/ListTest.java index a349cde70..26d04a4b2 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ListTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ListTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -187,25 +187,21 @@ public void descendingListTest() throws IOException, InterruptedException { } @Test - //TODO DEVSIX-2431 Positioned elements (e.g. absolute positioning) are lost when block is split across pages public void positionAbsolutePageSplitTest() throws IOException, InterruptedException { convertToPdfAndCompare("positionAbsolutePageSplit", SOURCE_FOLDER, DESTINATION_FOLDER); } @Test - //TODO DEVSIX-2431 Positioned elements (e.g. absolute positioning) are lost when block is split across pages public void noPositionPageSplitTest() throws IOException, InterruptedException { convertToPdfAndCompare("noPositionPageSplit", SOURCE_FOLDER, DESTINATION_FOLDER); } @Test - //TODO DEVSIX-2431 Positioned elements (e.g. absolute positioning) are lost when block is split across pages public void relativePositionPageSplitTest() throws IOException, InterruptedException { convertToPdfAndCompare("relativePositionPageSplit", SOURCE_FOLDER, DESTINATION_FOLDER); } @Test - //TODO DEVSIX-2431 Positioned elements (e.g. absolute positioning) are lost when block is split across pages public void listItemAbsolutePositionTest() throws IOException, InterruptedException { convertToPdfAndCompare("list-item-absolute", SOURCE_FOLDER, DESTINATION_FOLDER); } diff --git a/src/test/java/com/itextpdf/html2pdf/element/MainNavArticleTest.java b/src/test/java/com/itextpdf/html2pdf/element/MainNavArticleTest.java index abf605857..55c29c5bf 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/MainNavArticleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/MainNavArticleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/MarkTest.java b/src/test/java/com/itextpdf/html2pdf/element/MarkTest.java index 311653ad4..310bb6909 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/MarkTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/MarkTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/MetaTest.java b/src/test/java/com/itextpdf/html2pdf/element/MetaTest.java index 46d456e29..443d64df4 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/MetaTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/MetaTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ObjectTest.java b/src/test/java/com/itextpdf/html2pdf/element/ObjectTest.java index b6660faa4..ba64482e3 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ObjectTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ObjectTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/OptGroupTest.java b/src/test/java/com/itextpdf/html2pdf/element/OptGroupTest.java index 5fdfd3d2b..f9ae67e17 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/OptGroupTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/OptGroupTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/OptionTest.java b/src/test/java/com/itextpdf/html2pdf/element/OptionTest.java index 5263c4691..682a13a81 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/OptionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/OptionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ParagraphTest.java b/src/test/java/com/itextpdf/html2pdf/element/ParagraphTest.java index 431f89a34..2d6592091 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ParagraphTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ParagraphTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/PreTest.java b/src/test/java/com/itextpdf/html2pdf/element/PreTest.java index c649f0eb0..4bac0fe35 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/PreTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/PreTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/QTest.java b/src/test/java/com/itextpdf/html2pdf/element/QTest.java index d5f8f4b41..695e0c70c 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/QTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/QTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/STest.java b/src/test/java/com/itextpdf/html2pdf/element/STest.java index 54444ffb5..8807b9e10 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/STest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/STest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/SampTest.java b/src/test/java/com/itextpdf/html2pdf/element/SampTest.java index 282965768..10fc422d0 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/SampTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/SampTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/ScriptTest.java b/src/test/java/com/itextpdf/html2pdf/element/ScriptTest.java index d7b0a19bd..8cd2a2974 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/ScriptTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/ScriptTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/SectionTest.java b/src/test/java/com/itextpdf/html2pdf/element/SectionTest.java index e8a807f36..361b0865a 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/SectionTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/SectionTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/SelectTest.java b/src/test/java/com/itextpdf/html2pdf/element/SelectTest.java index 51de9e4eb..73c5774e0 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/SelectTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/SelectTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/SmallTest.java b/src/test/java/com/itextpdf/html2pdf/element/SmallTest.java index d5919159a..02d61ca6f 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/SmallTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/SmallTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/SpanTest.java b/src/test/java/com/itextpdf/html2pdf/element/SpanTest.java index 60885dc1b..d99c6be2c 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/SpanTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/SpanTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/StrikeTest.java b/src/test/java/com/itextpdf/html2pdf/element/StrikeTest.java index ff36eb104..eb4f8fd4b 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/StrikeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/StrikeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/StrongTest.java b/src/test/java/com/itextpdf/html2pdf/element/StrongTest.java index 5be2a2ad0..6826c20b9 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/StrongTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/StrongTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/StyleTest.java b/src/test/java/com/itextpdf/html2pdf/element/StyleTest.java index 802c249fe..26638e170 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/StyleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/StyleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/SupSubTest.java b/src/test/java/com/itextpdf/html2pdf/element/SupSubTest.java index 610bb17e9..af2f9cff4 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/SupSubTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/SupSubTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/SvgTest.java b/src/test/java/com/itextpdf/html2pdf/element/SvgTest.java index 398be97bb..764765d48 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/SvgTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/SvgTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/TableBodyTest.java b/src/test/java/com/itextpdf/html2pdf/element/TableBodyTest.java index 8bda5195e..fcb938a3b 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/TableBodyTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/TableBodyTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/TableTest.java b/src/test/java/com/itextpdf/html2pdf/element/TableTest.java index b75a576cb..e6b0fb2dc 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/TableTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/TableTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -38,6 +38,7 @@ This file is part of the iText (R) project. import com.itextpdf.layout.element.Table; import com.itextpdf.layout.logs.LayoutLogMessageConstant; import com.itextpdf.test.ExtendedITextTest; +import com.itextpdf.test.LogLevelConstants; import com.itextpdf.test.annotations.LogMessage; import com.itextpdf.test.annotations.LogMessages; @@ -519,10 +520,9 @@ public void tableRowAndCellBackgroundColorConflictTest() throws IOException, Int } @Test - // TODO DEVSIX-5036 - public void collapsedBorderWithWrongRowspanTableTest() { - Assertions.assertThrows(RuntimeException.class, - () -> runTest("collapsedBorderWithWrongRowspanTable", false, new PageSize(PageSize.A5).rotate())); + @LogMessages(messages = {@LogMessage(messageTemplate = IoLogMessageConstant.LAST_ROW_IS_NOT_COMPLETE, logLevel = LogLevelConstants.WARN)}) + public void collapsedBorderWithWrongRowspanTableTest() throws IOException, InterruptedException { + runTest("collapsedBorderWithWrongRowspanTable", false, new PageSize(PageSize.A5).rotate()); } @Test @@ -653,6 +653,16 @@ public void nestedTableWithSpecifiedWidthTest() throws IOException, InterruptedE runTest("nestedTableWithSpecifiedWidth"); } + @Test + public void collapsedBordersRowspanOnPageSplitTest() throws IOException, InterruptedException { + runTest("collapsedBordersRowspanOnPageSplit"); + } + + @Test + public void collapsedBordersRowspanOnPageSplit2Test() throws IOException, InterruptedException { + runTest("collapsedBordersRowspanOnPageSplit2"); + } + private void runTest(String testName) throws IOException, InterruptedException { runTest(testName, false); } diff --git a/src/test/java/com/itextpdf/html2pdf/element/TaggedPdfFormTest.java b/src/test/java/com/itextpdf/html2pdf/element/TaggedPdfFormTest.java index 4dc92bda6..e475f80f9 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/TaggedPdfFormTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/TaggedPdfFormTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/TagsInsideButtonTest.java b/src/test/java/com/itextpdf/html2pdf/element/TagsInsideButtonTest.java index 8a29df37b..506fde5ae 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/TagsInsideButtonTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/TagsInsideButtonTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/TimeTest.java b/src/test/java/com/itextpdf/html2pdf/element/TimeTest.java index 9d0a2c283..441dc5a53 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/TimeTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/TimeTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/TitleTest.java b/src/test/java/com/itextpdf/html2pdf/element/TitleTest.java index b7b55b7ce..a2ed44e4f 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/TitleTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/TitleTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/TtTest.java b/src/test/java/com/itextpdf/html2pdf/element/TtTest.java index 81f65caf5..23b994701 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/TtTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/TtTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/UTest.java b/src/test/java/com/itextpdf/html2pdf/element/UTest.java index 6c1edc701..0a985a13e 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/UTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/UTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/element/VarTest.java b/src/test/java/com/itextpdf/html2pdf/element/VarTest.java index 42ad5f503..00c13e063 100644 --- a/src/test/java/com/itextpdf/html2pdf/element/VarTest.java +++ b/src/test/java/com/itextpdf/html2pdf/element/VarTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/events/PdfHtmlAcroformDocumentEventTest.java b/src/test/java/com/itextpdf/html2pdf/events/PdfHtmlAcroformDocumentEventTest.java index 81a115624..2cada1cb0 100644 --- a/src/test/java/com/itextpdf/html2pdf/events/PdfHtmlAcroformDocumentEventTest.java +++ b/src/test/java/com/itextpdf/html2pdf/events/PdfHtmlAcroformDocumentEventTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/events/PdfHtmlPageXofYEventHandlerTest.java b/src/test/java/com/itextpdf/html2pdf/events/PdfHtmlPageXofYEventHandlerTest.java index c1bba705c..cf441a079 100644 --- a/src/test/java/com/itextpdf/html2pdf/events/PdfHtmlPageXofYEventHandlerTest.java +++ b/src/test/java/com/itextpdf/html2pdf/events/PdfHtmlPageXofYEventHandlerTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/resolver/UriResolverTest.java b/src/test/java/com/itextpdf/html2pdf/resolver/UriResolverTest.java index cbf42f879..2863c3557 100644 --- a/src/test/java/com/itextpdf/html2pdf/resolver/UriResolverTest.java +++ b/src/test/java/com/itextpdf/html2pdf/resolver/UriResolverTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/resolver/font/FontsUnicodeCoverageTest.java b/src/test/java/com/itextpdf/html2pdf/resolver/font/FontsUnicodeCoverageTest.java index cd33b24c7..783974c94 100644 --- a/src/test/java/com/itextpdf/html2pdf/resolver/font/FontsUnicodeCoverageTest.java +++ b/src/test/java/com/itextpdf/html2pdf/resolver/font/FontsUnicodeCoverageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/resolver/form/NameResolverTest.java b/src/test/java/com/itextpdf/html2pdf/resolver/form/NameResolverTest.java index 36f8ee1a0..5dd9fa03f 100644 --- a/src/test/java/com/itextpdf/html2pdf/resolver/form/NameResolverTest.java +++ b/src/test/java/com/itextpdf/html2pdf/resolver/form/NameResolverTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/resolver/resource/ExternalImageTest.java b/src/test/java/com/itextpdf/html2pdf/resolver/resource/ExternalImageTest.java index 4ad8d0e4a..dd58a8432 100644 --- a/src/test/java/com/itextpdf/html2pdf/resolver/resource/ExternalImageTest.java +++ b/src/test/java/com/itextpdf/html2pdf/resolver/resource/ExternalImageTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/resolver/resource/ExternalResourcesTest.java b/src/test/java/com/itextpdf/html2pdf/resolver/resource/ExternalResourcesTest.java index a739f8bed..d9b97dbe3 100644 --- a/src/test/java/com/itextpdf/html2pdf/resolver/resource/ExternalResourcesTest.java +++ b/src/test/java/com/itextpdf/html2pdf/resolver/resource/ExternalResourcesTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/resolver/resource/HtmlResourceResolverTest.java b/src/test/java/com/itextpdf/html2pdf/resolver/resource/HtmlResourceResolverTest.java index 6026c83b2..cb60d25e2 100644 --- a/src/test/java/com/itextpdf/html2pdf/resolver/resource/HtmlResourceResolverTest.java +++ b/src/test/java/com/itextpdf/html2pdf/resolver/resource/HtmlResourceResolverTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/resolver/resource/PathUtil.java b/src/test/java/com/itextpdf/html2pdf/resolver/resource/PathUtil.java index 3231f138c..aef2ea635 100644 --- a/src/test/java/com/itextpdf/html2pdf/resolver/resource/PathUtil.java +++ b/src/test/java/com/itextpdf/html2pdf/resolver/resource/PathUtil.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/java/com/itextpdf/html2pdf/resolver/resource/ResourceReleaseResolverTest.java b/src/test/java/com/itextpdf/html2pdf/resolver/resource/ResourceReleaseResolverTest.java index 0643b727e..530a7b302 100644 --- a/src/test/java/com/itextpdf/html2pdf/resolver/resource/ResourceReleaseResolverTest.java +++ b/src/test/java/com/itextpdf/html2pdf/resolver/resource/ResourceReleaseResolverTest.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. @@ -42,12 +42,13 @@ This file is part of the iText (R) project. @Tag("IntegrationTest") public class ResourceReleaseResolverTest extends ExtendedITextTest { - public static final String sourceFolder = "./src/test/resources/com/itextpdf/html2pdf/resolver/resource/"; - public static final String destinationFolder = "./target/test/com/itextpdf/html2pdf/resolver/resource/release/"; + private static final String SOURCE_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/resolver/resource/"; + private static final String FONT_FOLDER = "./src/test/resources/com/itextpdf/html2pdf/fonts/"; + private static final String DESTINATION_FOLDER = "./target/test/com/itextpdf/html2pdf/resolver/resource/release/"; @BeforeAll public static void beforeClass() { - createOrClearDestinationFolder(destinationFolder); + createOrClearDestinationFolder(DESTINATION_FOLDER); } @Test @@ -56,11 +57,11 @@ public void testThatSvgIsReleasedAfterConversion() throws IOException { String htmlFileName = "testWithSvg.html"; String svgFileName = "imageWithMultipleShapes.svg"; String imageFileName = "image.png"; - String sourceHtmlFile = sourceFolder + dirName + htmlFileName; - String sourceSvgFile = sourceFolder + dirName + svgFileName; - String sourceImageFile = sourceFolder + dirName + imageFileName; + String sourceHtmlFile = SOURCE_FOLDER + dirName + htmlFileName; + String sourceSvgFile = SOURCE_FOLDER + dirName + svgFileName; + String sourceImageFile = SOURCE_FOLDER + dirName + imageFileName; - String workDir = destinationFolder + dirName; + String workDir = DESTINATION_FOLDER + dirName; createDestinationFolder(workDir); String targetPdfFile = workDir + "target.pdf"; @@ -89,10 +90,10 @@ public void testThatLocalFontIsReleasedAfterConversion() throws IOException { String dirName = "LocalFontIsReleased/"; String htmlFileName = "localFontIsReleased.html"; String fontFileName = "NotoSans-Regular.ttf"; - String sourceHtmlFile = sourceFolder + dirName + htmlFileName; - String sourceFontFile = sourceFolder + dirName + fontFileName; + String sourceHtmlFile = SOURCE_FOLDER + dirName + htmlFileName; + String sourceFontFile = FONT_FOLDER + fontFileName; - String workDir = destinationFolder + dirName; + String workDir = DESTINATION_FOLDER + dirName; createDestinationFolder(workDir); String targetPdfFile = workDir + "target.pdf"; @@ -122,10 +123,10 @@ public void testThatAddedFontIsReleasedAfterConversion() throws IOException { String dirName = "AddedFontIsReleased/"; String htmlFileName = "addedFontIsReleased.html"; String fontFileName = "NotoSans-Regular.ttf"; - String sourceHtmlFile = sourceFolder + dirName + htmlFileName; - String sourceFontFile = sourceFolder + dirName + fontFileName; + String sourceHtmlFile = SOURCE_FOLDER + dirName + htmlFileName; + String sourceFontFile = FONT_FOLDER + dirName + fontFileName; - String workDir = destinationFolder + dirName; + String workDir = DESTINATION_FOLDER + dirName; createDestinationFolder(workDir); String targetPdfFile = workDir + "target.pdf"; @@ -136,7 +137,7 @@ public void testThatAddedFontIsReleasedAfterConversion() throws IOException { fontProvider.addDirectory(workDir); ConverterProperties properties = new ConverterProperties() - .setBaseUri(sourceFolder) + .setBaseUri(SOURCE_FOLDER) .setFontProvider(fontProvider); HtmlConverter.convertToPdf(new File(sourceHtmlFile), new File(targetPdfFile), properties); @@ -151,10 +152,10 @@ public void testThatCssIsReleasedAfterConversion() throws IOException { String dirName = "CssIsReleased/"; String htmlFileName = "cssIsReleased.html"; String cssFileName = "cssIsReleased.css"; - String sourceHtmlFile = sourceFolder + dirName + htmlFileName; - String sourceCssFile = sourceFolder + dirName + cssFileName; + String sourceHtmlFile = SOURCE_FOLDER + dirName + htmlFileName; + String sourceCssFile = SOURCE_FOLDER + dirName + cssFileName; - String workDir = destinationFolder + dirName; + String workDir = DESTINATION_FOLDER + dirName; createDestinationFolder(workDir); String targetPdfFile = workDir + "target.pdf"; diff --git a/src/test/java/com/itextpdf/html2pdf/utils/ImageSizeMeasuringListener.java b/src/test/java/com/itextpdf/html2pdf/utils/ImageSizeMeasuringListener.java index ae0cc92e1..0ed6daad6 100644 --- a/src/test/java/com/itextpdf/html2pdf/utils/ImageSizeMeasuringListener.java +++ b/src/test/java/com/itextpdf/html2pdf/utils/ImageSizeMeasuringListener.java @@ -1,6 +1,6 @@ /* This file is part of the iText (R) project. - Copyright (c) 1998-2025 Apryse Group NV + Copyright (c) 1998-2026 Apryse Group NV Authors: Apryse Software. This program is offered under a commercial and under the AGPL license. diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/OFL.txt b/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/OFL.txt deleted file mode 100644 index 9f9a07e22..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/OFL.txt +++ /dev/null @@ -1,93 +0,0 @@ -Copyright (c) 2011, TypeTogether (www.type-together.com), -with Reserved Font Names "Abril" and "Abril Fatface" -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/SIL.txt b/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/SIL.txt deleted file mode 100644 index 61ae04335..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/SIL.txt +++ /dev/null @@ -1,40 +0,0 @@ - -The Puritan font was downloaded from: -http://openfontlibrary.fontly.org/files/benweiner/3 - -This font is distrubuted under the SIL OPEN FONT LICENSE -http://scripts.sil.org/OFL - -PERMISSION & CONDITIONS - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NOTICE.txt b/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NOTICE.txt deleted file mode 100644 index 66fd6ac8b..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NOTICE.txt +++ /dev/null @@ -1,32 +0,0 @@ -These fonts are under the following licenses: - -NotoSansArabic-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSansArabic-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSansGurmukhi-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSansGurmukhi-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSansMyanmar-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSansMyanmar-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSansOriya-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSansOriya-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifBengali-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifBengali-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifDevanagari-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifDevanagari-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifGujarati-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifGujarati-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifHebrew-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifHebrew-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifKannada-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifKannada-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifKhmer-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifKhmer-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifMalayalam-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifMalayalam-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifMyanmar-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifMyanmar-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifTamil-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifTamil-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifTelugu-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifTelugu-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifThai-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt -NotoSerifThai-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL.txt \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_backwardLinkUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_backwardLinkUa2.pdf index 037e4daaf..00a78117c 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_backwardLinkUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_backwardLinkUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_boxSizingInlineBlockUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_boxSizingInlineBlockUa2.pdf index d04cc7ee5..51f5675a9 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_boxSizingInlineBlockUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_boxSizingInlineBlockUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_complexParagraphStructureUA1.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_complexParagraphStructureUA1.pdf index 475c56375..9caa1e7cf 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_complexParagraphStructureUA1.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_complexParagraphStructureUA1.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_complexParagraphStructureUA2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_complexParagraphStructureUA2.pdf index 5a941c218..d80073c6f 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_complexParagraphStructureUA2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_complexParagraphStructureUA2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_divInButtonUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_divInButtonUa2.pdf index 357719483..f38398f68 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_divInButtonUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_divInButtonUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyElementsUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyElementsUa2.pdf index 6ad235988..596566202 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyElementsUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyElementsUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyHtmlUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyHtmlUa2.pdf index b80be1ffd..9648b4b3d 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyHtmlUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyHtmlUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyTableDataCellUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyTableDataCellUa2.pdf index 633337770..f32350297 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyTableDataCellUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_emptyTableDataCellUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_externalLinkUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_externalLinkUa2.pdf index 0ed41395a..b1523ad23 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_externalLinkUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_externalLinkUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_flexTagsUA2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_flexTagsUA2.pdf index fae573e12..d4942f08d 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_flexTagsUA2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_flexTagsUA2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_headingInButtonUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_headingInButtonUa2.pdf index 6153fc636..358229346 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_headingInButtonUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_headingInButtonUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_imageLinkUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_imageLinkUa2.pdf index de1516b8d..7619338b7 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_imageLinkUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_imageLinkUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_inputUA2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_inputUA2.pdf index 17fc4c252..05a60f32a 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_inputUA2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_inputUA2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_inputWithTitleTagUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_inputWithTitleTagUa2.pdf index 88192617f..95c93aa58 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_inputWithTitleTagUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_inputWithTitleTagUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_linkWithPageBreakBeforeUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_linkWithPageBreakBeforeUa2.pdf index 001ad71f0..df954241b 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_linkWithPageBreakBeforeUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_linkWithPageBreakBeforeUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_longLinkBrokenAcrossPagesUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_longLinkBrokenAcrossPagesUa2.pdf index 0f23c39a9..21cbb3eeb 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_longLinkBrokenAcrossPagesUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_longLinkBrokenAcrossPagesUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pageBreakAfterAvoidUa1.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pageBreakAfterAvoidUa1.pdf index 02f189c08..9077a73e4 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pageBreakAfterAvoidUa1.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pageBreakAfterAvoidUa1.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pageBreakAfterAvoidUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pageBreakAfterAvoidUa2.pdf index 7496bb9d6..82d86f5fd 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pageBreakAfterAvoidUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pageBreakAfterAvoidUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_paragraphsInHeadingsUa1.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_paragraphsInHeadingsUa1.pdf index e908868ab..2584b7e28 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_paragraphsInHeadingsUa1.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_paragraphsInHeadingsUa1.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_paragraphsInHeadingsUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_paragraphsInHeadingsUa2.pdf index 42e1875eb..0e9978559 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_paragraphsInHeadingsUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_paragraphsInHeadingsUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pngInDivStyleUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pngInDivStyleUa2.pdf index 2a44efcdd..6a67e7268 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pngInDivStyleUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_pngInDivStyleUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_simpleLinkUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_simpleLinkUa2.pdf index 56a107b7d..7b7671dc1 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_simpleLinkUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_simpleLinkUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_simpleOutlineUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_simpleOutlineUa2.pdf index 3fc743792..35db04465 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_simpleOutlineUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_simpleOutlineUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_svgBase64Ua2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_svgBase64Ua2.pdf index d25087eed..daf27d123 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_svgBase64Ua2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_svgBase64Ua2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_svgSimpleAlternateDescriptionUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_svgSimpleAlternateDescriptionUa2.pdf index 92c8e189a..598775b87 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_svgSimpleAlternateDescriptionUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_svgSimpleAlternateDescriptionUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_tableUA2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_tableUA2.pdf index b1aa61c58..e78b7d3c4 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_tableUA2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_tableUA2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_tagStructureFixesUA2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_tagStructureFixesUA2.pdf index 5a90f7340..39ad9d5d0 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_tagStructureFixesUA2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_tagStructureFixesUA2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_zeroFontSizeUa2.pdf b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_zeroFontSizeUa2.pdf index f6aa26978..a4475ffde 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_zeroFontSizeUa2.pdf and b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/cmp_zeroFontSizeUa2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/complexParagraphStructure.html b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/complexParagraphStructure.html index 2c86caa9a..dc3006117 100644 --- a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/complexParagraphStructure.html +++ b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/complexParagraphStructure.html @@ -16,7 +16,7 @@ hello world 1 he inline-block text text text text text text - inline-block nested + inline-block nested llo world 1 hello world 1 hello world 1 hello world 1 hello world 1 hello world 1 hello world 1 diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/pageBreakAfterAvoid.html b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/pageBreakAfterAvoid.html index 1896951d9..990499c7e 100644 --- a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/pageBreakAfterAvoid.html +++ b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/pageBreakAfterAvoid.html @@ -3,7 +3,7 @@
test block
diff --git a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/paragraphsInHeadings.html b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/paragraphsInHeadings.html index 48951ecdb..42876c344 100644 --- a/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/paragraphsInHeadings.html +++ b/src/test/resources/com/itextpdf/html2pdf/HtmlConverterPdfUA1UA2Test/paragraphsInHeadings.html @@ -8,7 +8,7 @@ h2 { color: darkred; } h3 { font-style: italic; } h4 { text-transform: uppercase; } - p { font-size: 14px; color: gray; } + p { font-size: 14px; color: #1F2739; }

diff --git a/src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/fonts/NotoEmoji-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/fonts/NotoEmoji-Regular.ttf deleted file mode 100644 index 19b7badf4..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/fonts/NotoEmoji-Regular.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/surrogatePair2Pairs.html b/src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/surrogatePair2Pairs.html index f0614e0ce..eb7b1e4a6 100644 --- a/src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/surrogatePair2Pairs.html +++ b/src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/surrogatePair2Pairs.html @@ -5,7 +5,7 @@ + + + +

Global span letter-spacing: 5px, border: red

+
+ Parent font: 25px (inherited), letter-spacing: 1px (inherited), border: blue (not inherited)

+ + no property set - 25px font, 5px wide with red border

+ + unset - 25px font, 1px wide without border +
+ + diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FloatTest/splitFloatedLists.html b/src/test/resources/com/itextpdf/html2pdf/css/FloatTest/splitFloatedLists.html index b5389c40b..19d5a82f0 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FloatTest/splitFloatedLists.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FloatTest/splitFloatedLists.html @@ -46,7 +46,7 @@ } @font-face { font-family: "Icons"; - src: url("../CssFormsTest/open-iconic.ttf"); + src: url("../../fonts/open-iconic.ttf"); } .icon { position: relative; diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/FontFaceTestLocal.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/FontFaceTestLocal.html index c0415736e..d5da2d6b5 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/FontFaceTestLocal.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/FontFaceTestLocal.html @@ -1,12 +1,12 @@ - + -
1. Droid Serif Regular
-
2. Droid Serif Italic
-
3. Droid Serif Bold
-
4. Droid Serif Bold Italic
+
1. Roboto Serif Regular
+
2. Roboto Serif Italic
+
3. Roboto Serif Bold
+
4. Roboto Serif Bold Italic
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/bolderLighterFontWeightTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/bolderLighterFontWeightTest.html index de266c08a..df8d0d0a7 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/bolderLighterFontWeightTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/bolderLighterFontWeightTest.html @@ -5,8 +5,8 @@

To test fon-weight resolution in @font-face, the divs below have all been assigned the same font-family, but with a different weight. In the font-face declarations, the weights will point to different font files

-
1. Droid Serif Regular
-
2. Droid Serif Bold
+
1. Roboto Serif Regular
+
2. Roboto Serif Bold
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_bolderLighterFontWeightTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_bolderLighterFontWeightTest.pdf index 40e2c8d1b..31a08cb7b 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_bolderLighterFontWeightTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_bolderLighterFontWeightTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUnicodeRangeSignificantTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUnicodeRangeSignificantTest.pdf index e418999ef..ec5f6c533 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUnicodeRangeSignificantTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUnicodeRangeSignificantTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUrlWithNotUsedUnicodeRangeTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUrlWithNotUsedUnicodeRangeTest.pdf index d7c2727df..b80fdfaa3 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUrlWithNotUsedUnicodeRangeTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUrlWithNotUsedUnicodeRangeTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUrlWithUsedUnicodeRangeTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUrlWithUsedUnicodeRangeTest.pdf index f7405d4f2..27cbf3ef5 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUrlWithUsedUnicodeRangeTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_correctUrlWithUsedUnicodeRangeTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalFontTest.pdf deleted file mode 100644 index cb7d8ff21..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalFontTest.pdf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalLocalFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalLocalFontTest.pdf deleted file mode 100644 index d0c31b8d8..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalLocalFontTest.pdf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaFontTest.pdf deleted file mode 100644 index 2d116885d..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaFontTest.pdf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaRuleFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaRuleFontTest.pdf deleted file mode 100644 index a175de82f..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaRuleFontTest.pdf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaRuleFontTest2.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaRuleFontTest2.pdf deleted file mode 100644 index 39d8d87fd..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifLocalWithMediaRuleFontTest2.pdf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifWebFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifWebFontTest.pdf deleted file mode 100644 index 4876c1200..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_droidSerifWebFontTest.pdf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightInvalidWeightsTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightInvalidWeightsTest.pdf index 5e3b9b0fb..30d4d78f6 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightInvalidWeightsTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightInvalidWeightsTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightTest.pdf index 0692ab877..3b0b25863 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightWrongWeightsTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightWrongWeightsTest.pdf index 7dda577ad..fd2269ee5 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightWrongWeightsTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceFontWeightWrongWeightsTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceGrammarTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceGrammarTest.pdf index 30ef70d69..50c4d01d5 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceGrammarTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceGrammarTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceWithUnicodeRangeTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceWithUnicodeRangeTest.pdf index a7935596c..6d323d519 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceWithUnicodeRangeTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceWithUnicodeRangeTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceWoff2SimpleTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceWoff2SimpleTest.pdf index 929864243..98e368269 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceWoff2SimpleTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_fontFaceWoff2SimpleTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_incorrectFontNameTest04.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_incorrectFontNameTest04.pdf index 7a92b18db..a2e410954 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_incorrectFontNameTest04.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_incorrectFontNameTest04.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_incorrectUnicodeRangesTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_incorrectUnicodeRangesTest.pdf index fa1458452..029f27c24 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_incorrectUnicodeRangesTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_incorrectUnicodeRangesTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_overwrittenUnicodeRangeTextInLineTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_overwrittenUnicodeRangeTextInLineTest.pdf index 5a79ebe6d..f09339b1c 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_overwrittenUnicodeRangeTextInLineTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_overwrittenUnicodeRangeTextInLineTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_overwrittenUnicodeRangeTextInSomeLinesTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_overwrittenUnicodeRangeTextInSomeLinesTest.pdf index 48dfc5187..8bb2f78af 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_overwrittenUnicodeRangeTextInSomeLinesTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_overwrittenUnicodeRangeTextInSomeLinesTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalFontTest.pdf new file mode 100644 index 000000000..d62e4c466 Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalFontTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalLocalFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalLocalFontTest.pdf new file mode 100644 index 000000000..74df3614a Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalLocalFontTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaFontTest.pdf new file mode 100644 index 000000000..22459ed5b Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaFontTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaRuleFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaRuleFontTest.pdf new file mode 100644 index 000000000..21074c11f Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaRuleFontTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaRuleFontTest2.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaRuleFontTest2.pdf new file mode 100644 index 000000000..0af1fcf69 Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifLocalWithMediaRuleFontTest2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifWebFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifWebFontTest.pdf new file mode 100644 index 000000000..b2900a8ff Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_robotoSerifWebFontTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_unusedFontWithUnicodeRangeTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_unusedFontWithUnicodeRangeTest.pdf index c9bd550a3..3c28830e5 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_unusedFontWithUnicodeRangeTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/cmp_unusedFontWithUnicodeRangeTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUnicodeRangeSignificantTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUnicodeRangeSignificantTest.html index 6e315c713..e7f241cbd 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUnicodeRangeSignificantTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUnicodeRangeSignificantTest.html @@ -7,21 +7,21 @@ /*numbers*/ @font-face { font-family: 'WithRanges'; - src: url("web-fonts/droid-serif-italic.ttf"); + src: url("../../fonts/RobotoSerif-Italic.ttf"); unicode-range: U+0030-0039; } /*capital letters*/ @font-face { font-family: 'WithRanges'; - src: url("web-fonts/droid-serif-bold.ttf"); + src: url("../../fonts/RobotoSerif-Bold.ttf"); unicode-range: U+0041-005A; } /*letters*/ @font-face { font-family: 'WithRanges'; - src: url("web-fonts/droid-serif-regular.ttf"); + src: url("../../fonts/RobotoSerif-Regular.ttf"); unicode-range: U+0061-007A; } diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUrlWithNotUsedUnicodeRangeTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUrlWithNotUsedUnicodeRangeTest.html index 8e7b688e1..e991e40cd 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUrlWithNotUsedUnicodeRangeTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUrlWithNotUsedUnicodeRangeTest.html @@ -5,23 +5,23 @@ -
a
-
a
+
a
+
a
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUrlWithUsedUnicodeRangeTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUrlWithUsedUnicodeRangeTest.html index ed610f191..30c2d35ac 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUrlWithUsedUnicodeRangeTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/correctUrlWithUsedUnicodeRangeTest.html @@ -5,23 +5,23 @@ -
m letter
corresponds to u+6d only
-
m>> letter
corresponds to u+6d only
+
m letter
corresponds to u+6d only
+
m>> letter
corresponds to u+6d only
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/doNotDownloadUnusedFontTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/doNotDownloadUnusedFontTest.html index 14785253c..deabc0cd0 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/doNotDownloadUnusedFontTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/doNotDownloadUnusedFontTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-grammar.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-grammar.css deleted file mode 100644 index c77ad68d1..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-grammar.css +++ /dev/null @@ -1,8 +0,0 @@ - -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: normal; - src: url('fake') format('opentype') , url('web-fonts/droid-serif-regular.ttf') format('opentype'); -} - diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-local.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-local.css deleted file mode 100644 index a32b2a781..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-local.css +++ /dev/null @@ -1,34 +0,0 @@ -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: normal; - src: url('web-fonts/droid-serif-regular.ttf') format('truetype')/* test comments */, - url('web-fonts/droid-serif-invalid.ttf') format('opentype')/* test invalid font */; -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: normal; - src: local(Droid Serif Bold), - url('web-fonts/droid-serif-bold.ttf') format('opentype'); -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: italic; - src: url('web-fonts/droid-serif-bolditalic.ttf') format('truetype'); -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: italic; - src: local(Droid Serif Italic), - url('web-fonts/droid-serif-italic.ttf') format('opentype'); -} - -p { - font-size: 40pt; -} \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-print.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-print.css deleted file mode 100644 index f12393f2a..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-print.css +++ /dev/null @@ -1,29 +0,0 @@ -@media print { - @font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: normal; - src: url('web-fonts/droid-serif-regular.ttf') format('truetype'); - } - - @font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: normal; - src: url('web-fonts/droid-serif-bold.ttf') format('opentype'); - } - - @font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: italic; - src: url('web-fonts/droid-serif-bolditalic.ttf') format('truetype'); - } - - @font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: italic; - src: url('web-fonts/droid-serif-italic.ttf') format('opentype'); - } -} diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-screen.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-screen.css deleted file mode 100644 index 42a217b46..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local-screen.css +++ /dev/null @@ -1,29 +0,0 @@ -@media screen { - @font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: normal; - src: url('web-fonts/droid-serif-regular.ttf') format('truetype'); - } - - @font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: normal; - src: url('web-fonts/droid-serif-bold.ttf') format('opentype'); - } - - @font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: italic; - src: url('web-fonts/droid-serif-bolditalic.ttf') format('truetype'); - } - - @font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: italic; - src: url('web-fonts/droid-serif-italic.ttf') format('opentype'); - } -} diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local.css deleted file mode 100644 index bbb6c2dfe..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local.css +++ /dev/null @@ -1,32 +0,0 @@ -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: normal; - src: url('web-fonts/droid-serif-regular.ttf') format('truetype'), - url('web-fonts/droid-serif-invalid.ttf') format('opentype')/* test invalid font */; -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: normal; - src: url('web-fonts/droid-serif-bold.ttf') format('opentype'); -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: italic; - src: url('web-fonts/droid-serif-bolditalic.ttf') format('truetype'); -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: italic; - src: url('web-fonts/droid-serif-italic.ttf') format('opentype'); -} - -p { - font-size: 40pt; -} \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local2.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local2.css deleted file mode 100644 index bbb6c2dfe..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-local2.css +++ /dev/null @@ -1,32 +0,0 @@ -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: normal; - src: url('web-fonts/droid-serif-regular.ttf') format('truetype'), - url('web-fonts/droid-serif-invalid.ttf') format('opentype')/* test invalid font */; -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: normal; - src: url('web-fonts/droid-serif-bold.ttf') format('opentype'); -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: italic; - src: url('web-fonts/droid-serif-bolditalic.ttf') format('truetype'); -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: italic; - src: url('web-fonts/droid-serif-italic.ttf') format('opentype'); -} - -p { - font-size: 40pt; -} \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/0AKsP294HTD-nvJgucYTaJ0EAVxt0G0biEntp43Qt6E.ttf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/0AKsP294HTD-nvJgucYTaJ0EAVxt0G0biEntp43Qt6E.ttf deleted file mode 100644 index 82a9b160d..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/0AKsP294HTD-nvJgucYTaJ0EAVxt0G0biEntp43Qt6E.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/NOTICE.txt b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/NOTICE.txt deleted file mode 100644 index b714617ce..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/NOTICE.txt +++ /dev/null @@ -1,209 +0,0 @@ - This software uses following fonts under the following licenses: - | droid-serif font | Apache License v2.00 | - ------------------------------------------------------------------------------------------------------------------------- - -droid-serif font is used under the following license agreement: - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/QQt14e8dY39u-eYBZmppwZ_TkvowlIOtbR7ePgFOpF4.ttf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/QQt14e8dY39u-eYBZmppwZ_TkvowlIOtbR7ePgFOpF4.ttf deleted file mode 100644 index 8340792dc..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/QQt14e8dY39u-eYBZmppwZ_TkvowlIOtbR7ePgFOpF4.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/c92rD_x0V1LslSFt3-QEpmsGzsqhEorxQDpu60nfWEc.ttf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/c92rD_x0V1LslSFt3-QEpmsGzsqhEorxQDpu60nfWEc.ttf deleted file mode 100644 index 9cfeb54fc..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/c92rD_x0V1LslSFt3-QEpmsGzsqhEorxQDpu60nfWEc.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/cj2hUnSRBhwmSPr9kS589-LrC4Du4e_yfTJ8Ol60xk0.ttf b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/cj2hUnSRBhwmSPr9kS589-LrC4Du4e_yfTJ8Ol60xk0.ttf deleted file mode 100644 index ccaeca218..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web-fonts/cj2hUnSRBhwmSPr9kS589-LrC4Du4e_yfTJ8Ol60xk0.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web.css deleted file mode 100644 index cad484af8..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droid-serif-web.css +++ /dev/null @@ -1,56 +0,0 @@ -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: normal; - /*src: url('http://fonts.gstatic.com/s/droidserif/v6/0AKsP294HTD-nvJgucYTaGfQcKutQXcIrRfyR5jdjY8.eot');*/ - src: url('http://fonts.gstatic.com/s/droidserif/v6/0AKsP294HTD-nvJgucYTaGfQcKutQXcIrRfyR5jdjY8.eot?#iefix') format('embedded-opentype'), - /*local('Droid Serif'),*/ - /*local('Droid-Serif-regular'),*/ - /*url('http://fonts.gstatic.com/s/droidserif/v6/0AKsP294HTD-nvJgucYTaIgp9Q8gbYrhqGlRav_IXfk.woff2') format('woff2'),*/ - /*url('http://fonts.gstatic.com/s/droidserif/v6/0AKsP294HTD-nvJgucYTaLrIa-7acMAeDBVuclsi6Gc.woff') format('woff'),*/ - /*url('http://fonts.gstatic.com/l/font?kit=0AKsP294HTD-nvJgucYTaHNsigHlcrQGNV8nkUSFQfc&skey=a46d7e8bf49adcd6&v=v6#DroidSerif') format('svg'),*/ - url('droid-serif-web-fonts/0AKsP294HTD-nvJgucYTaJ0EAVxt0G0biEntp43Qt6E.ttf') format('truetype'); - -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: normal; - /*src: url('http://fonts.gstatic.com/s/droidserif/v6/QQt14e8dY39u-eYBZmppwbFt29aCHKT7otDW9l62Aag.eot');*/ - src: url('http://fonts.gstatic.com/s/droidserif/v6/QQt14e8dY39u-eYBZmppwbFt29aCHKT7otDW9l62Aag.eot?#iefix') format('embedded-opentype'), - /*local('Droid Serif Bold'),*/ - /*local('Droid-Serif-700'),*/ - /*url('http://fonts.gstatic.com/s/droidserif/v6/QQt14e8dY39u-eYBZmppwf79_ZuUxCigM2DespTnFaw.woff2') format('woff2'),*/ - /*url('http://fonts.gstatic.com/s/droidserif/v6/QQt14e8dY39u-eYBZmppwRbnBKKEOwRKgsHDreGcocg.woff') format('woff'),*/ - /*url('http://fonts.gstatic.com/l/font?kit=QQt14e8dY39u-eYBZmppwXtNmQEE9wZ6UZlmiISB1pg&skey=e8de471aca8a4d53&v=v6#DroidSerif') format('svg'),*/ - url('droid-serif-web-fonts/QQt14e8dY39u-eYBZmppwZ_TkvowlIOtbR7ePgFOpF4.ttf') format('truetype'); -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 700; - font-style: italic; - /*src: url('http://fonts.gstatic.com/s/droidserif/v6/c92rD_x0V1LslSFt3-QEptmkQI_kos-lIOeNt19QAas.eot');*/ - src: url('http://fonts.gstatic.com/s/droidserif/v6/c92rD_x0V1LslSFt3-QEptmkQI_kos-lIOeNt19QAas.eot?#iefix') format('embedded-opentype'), - /*local('Droid Serif Bold Italic'),*/ - /*local('Droid-Serif-700italic'),*/ - /*url('http://fonts.gstatic.com/s/droidserif/v6/c92rD_x0V1LslSFt3-QEpsyRwA4nzNmLFN68bwzDkMk.woff2') format('woff2'),*/ - /*url('http://fonts.gstatic.com/s/droidserif/v6/c92rD_x0V1LslSFt3-QEpiHgNb6vKVPdRA9LSAKGxzw.woff') format('woff'),*/ - /*url('http://fonts.gstatic.com/l/font?kit=c92rD_x0V1LslSFt3-QEpvXRuyUpAA8tGJEYgFPFMx8&skey=2409cd7cfd68ebd3&v=v6#DroidSerif') format('svg'),*/ - url('droid-serif-web-fonts/c92rD_x0V1LslSFt3-QEpmsGzsqhEorxQDpu60nfWEc.ttf') format('truetype'); -} - -@font-face { - font-family: 'Droid Serif'; - font-weight: 400; - font-style: italic; - /*src: url('http://fonts.gstatic.com/s/droidserif/v6/cj2hUnSRBhwmSPr9kS5896SxSvC1lIsK_unZDHWqTBg.eot');*/ - src: url('http://fonts.gstatic.com/s/droidserif/v6/cj2hUnSRBhwmSPr9kS5896SxSvC1lIsK_unZDHWqTBg.eot?#iefix') format('embedded-opentype'), - /*local('Droid Serif Italic'),*/ - /*local('Droid-Serif-italic'),*/ - /*url('http://fonts.gstatic.com/s/droidserif/v6/cj2hUnSRBhwmSPr9kS589weOulFbQKHxPa89BaxZzA0.woff2') format('woff2'),*/ - /*url('http://fonts.gstatic.com/s/droidserif/v6/cj2hUnSRBhwmSPr9kS5894o3ZslTYfJv0R05CazkwN8.woff') format('woff'),*/ - /*url('http://fonts.gstatic.com/l/font?kit=cj2hUnSRBhwmSPr9kS589zGefNBPGWcFPRAoUX_lgLU&skey=5baf0548233ba076&v=v6#DroidSerif') format('svg'),*/ - url('droid-serif-web-fonts/cj2hUnSRBhwmSPr9kS589-LrC4Du4e_yfTJ8Ol60xk0.ttf') format('truetype'); -} diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalFontTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalFontTest.html deleted file mode 100644 index c0415736e..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalFontTest.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - -
1. Droid Serif Regular
-
2. Droid Serif Italic
-
3. Droid Serif Bold
-
4. Droid Serif Bold Italic
- - \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalLocalFontTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalLocalFontTest.html deleted file mode 100644 index 68c649aae..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalLocalFontTest.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - -
1. Droid Serif Regular
-
2. Droid Serif Italic
-
3. Droid Serif Bold
-
4. Droid Serif Bold Italic
- - \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaFontTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaFontTest.html deleted file mode 100644 index 6485dfd48..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaFontTest.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - -
1. Droid Serif Regular
-
2. Droid Serif Italic
-
3. Droid Serif Bold
-
4. Droid Serif Bold Italic
- - \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaRuleFontTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaRuleFontTest.html deleted file mode 100644 index 32f24d727..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaRuleFontTest.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - -
1. Droid Serif Regular
-
2. Droid Serif Italic
-
3. Droid Serif Bold
-
4. Droid Serif Bold Italic
- - \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaRuleFontTest2.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaRuleFontTest2.html deleted file mode 100644 index 6785322ca..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifLocalWithMediaRuleFontTest2.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - -
1. Droid Serif Regular
-
2. Droid Serif Italic
-
3. Droid Serif Bold
-
4. Droid Serif Bold Italic
- - \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifWebFontTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifWebFontTest.html deleted file mode 100644 index 54484b380..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/droidSerifWebFontTest.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - -
1. Droid Serif Regular
-
2. Droid Serif Italic
-
3. Droid Serif Bold
-
4. Droid Serif Bold Italic
- - \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-test.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-test.css index 0a72d5dc6..9ae39e0c8 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-test.css +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-test.css @@ -1,37 +1,37 @@ @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: 400; font-style: normal; - src: url('web-fonts/droid-serif-regular.ttf') format('truetype'), - url('web-fonts/droid-serif-invalid.ttf') format('opentype')/* test invalid font */; + src: url('../../fonts/RobotoSerif-Regular.ttf') format('truetype'), + url('../../fonts/RobotoSerif-invalid.ttf') format('opentype')/* test invalid font */; } @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: 700; font-style: normal; - src: url('web-fonts/droid-serif-bold.ttf') format('opentype'); + src: url('../../fonts/RobotoSerif-Bold.ttf') format('truetype'); } @font-face { - font-family: 'Droid Serif'; + font-family: 'Amaranth Serif'; font-weight: 300; font-style: normal; - src: url('../../fonts/Amaranth-Regular.woff') format('opentype'); + src: url('../../fonts/Amaranth-Regular.woff') format('woff'); } @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: 500; font-style: normal; - src: url('web-fonts/droid-serif-italic.ttf') format('truetype'); + src: url('../../fonts/RobotoSerif-Italic.ttf') format('truetype'); } @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: 800; font-style: normal; - src: url('web-fonts/droid-serif-bolditalic.ttf') format('truetype'); + src: url('../../fonts/RobotoSerif-BoldItalic.ttf') format('truetype'); } diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-testInvalidWeights.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-testInvalidWeights.css index 9a52d7ba5..497be0fce 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-testInvalidWeights.css +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-testInvalidWeights.css @@ -1,23 +1,23 @@ @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: 400; font-style: normal; - src: url('web-fonts/droid-serif-regular.ttf') format('truetype'), - url('web-fonts/droid-serif-invalid.ttf') format('opentype')/* test invalid font */; + src: url('../../fonts/RobotoSerif-Regular.ttf') format('truetype'), + url('../../fonts/RobotoSerif-invalid.ttf') format('opentype')/* test invalid font */; } @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: 700; font-style: normal; - src: url('web-fonts/droid-serif-bold.ttf') format('opentype'); + src: url('../../fonts/RobotoSerif-Bold.ttf') format('truetype'); } @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: alakazam; font-style: normal; - src: url('web-fonts/droid-serif-italic.ttf') format('opentype'); + src: url('../../fonts/RobotoSerif-Italic.ttf') format('truetype'); } p { diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-testWrongWeights.css b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-testWrongWeights.css index ac5e0cf47..08787fb14 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-testWrongWeights.css +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/font-face-font-weight-testWrongWeights.css @@ -1,16 +1,16 @@ @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: 900; font-style: normal; - src: url('web-fonts/droid-serif-regular.ttf') format('truetype'), - url('web-fonts/droid-serif-invalid.ttf') format('opentype')/* test invalid font */; + src: url('../../fonts/RobotoSerif-Regular.ttf') format('truetype'), + url('../../fonts/RobotoSerif-invalid.ttf') format('opentype')/* test invalid font */; } @font-face { - font-family: 'Droid Serif'; + font-family: 'Roboto Serif'; font-weight: 100; font-style: normal; - src: url('web-fonts/droid-serif-bold.ttf') format('opentype'); + src: url('../../fonts/RobotoSerif-Bold.ttf') format('opentype'); } p { diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightInvalidWeightsTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightInvalidWeightsTest.html index 1905eadf0..09bb966d9 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightInvalidWeightsTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightInvalidWeightsTest.html @@ -6,12 +6,12 @@

To test font-weight resolution in @font-face, the divs below have all been assigned the same font-family, but with a different weight. One invalid font-weight (Alakazam) is specified in the css and one (abracadabra) is used in a div below.

-
1. Droid Serif Regular
-
2. Droid Serif Bold
-
3. Droid Serif 400pt
-
4. Droid Serif 700pt
-
5. Droid Serif alakazam
-
6. Droid Serif abracadabra
+
1. Roboto Serif Regular
+
2. Roboto Serif Bold
+
3. Roboto Serif 400pt
+
4. Roboto Serif 700pt
+
5. Roboto Serif alakazam
+
6. Roboto Serif abracadabra
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightTest.html index f50bfbfeb..bec072b73 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightTest.html @@ -5,13 +5,13 @@

To test fon-weight resolution in @font-face, the divs below have all been assigned the same font-family, but with a different weight. In the font-face declarations, the weights will point to different font files

-
1. Droid Serif Regular
-
2. Droid Serif Bold
-
3. Droid Serif 400pt
-
4. Droid Serif 700pt
-
5. Droid Serif 300pt
-
6. Droid Serif 500pt
-
7. Droid Serif 800pt
+
1. Roboto Serif Regular
+
2. Roboto Serif Bold
+
3. Roboto Serif 400pt
+
4. Roboto Serif 700pt
+
5. Roboto Serif 300pt
+
6. Roboto Serif 500pt
+
7. Roboto Serif 800pt
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightWrongWeightsTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightWrongWeightsTest.html index 949f4d343..df86088f2 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightWrongWeightsTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceFontWeightWrongWeightsTest.html @@ -5,13 +5,13 @@

To test font-weight resolution in @font-face, the bold fonts have been assigned a low weight(100) and the regular/italic ones a high weight(900)

-
1. Droid Serif Regular
-
2. Droid Serif Bold
-
3. Droid Serif 400pt
-
4. Droid Serif 700pt
-
5. Droid Serif 300pt
-
6. Droid Serif 500pt
-
7. Droid Serif 800pt
+
1. Roboto Serif Regular
+
2. Roboto Serif Bold
+
3. Roboto Serif 400pt
+
4. Roboto Serif 700pt
+
5. Roboto Serif 300pt
+
6. Roboto Serif 500pt
+
7. Roboto Serif 800pt
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceGrammarTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceGrammarTest.html index 8bf5fc359..bd2c617b9 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceGrammarTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceGrammarTest.html @@ -1,9 +1,9 @@ - + -
1. Droid Serif Regular
+
1. Roboto Serif Regular
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWithUnicodeRangeTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWithUnicodeRangeTest.html index d6589e090..8ccd40458 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWithUnicodeRangeTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWithUnicodeRangeTest.html @@ -6,12 +6,12 @@ @font-face { font-family: 'Ampersand'; - src: url("web-fonts/droid-serif-bold.ttf"); + src: url("../../fonts/RobotoSerif-Bold.ttf"); unicode-range:U+006a, U+0070; } @font-face { font-family: 'Ampersand'; - src: url("web-fonts/droid-serif-italic.ttf"); + src: url("../../fonts/RobotoSerif-Italic.ttf"); unicode-range:U+75; } div { diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWoff2SimpleTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWoff2SimpleTest.html index 6e6573fa6..40e3c73c2 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWoff2SimpleTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWoff2SimpleTest.html @@ -9,7 +9,7 @@ } @font-face { font-family: "Noto Sans CJK JP"; - src: url("web-fonts/NotoSansCJKjp-Regular.woff2") format("woff2"); + src: url("../../fonts/NotoSansJPThin-Regular.woff2") format("woff2"); } body { font-size: 20px; diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWoff2TtcTest.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWoff2TtcTest.html index 4c62c973d..a90d55020 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWoff2TtcTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFaceWoff2TtcTest.html @@ -9,7 +9,7 @@ } @font-face { font-family: "Noto Sans CJK"; - src: url("web-fonts/NotoSansCJK-Regular.woff2") format("woff2"); + src: url("../../fonts/NotoSansCJK-Regular.woff2") format("woff2"); } body { font-size: 20px; diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFamilyTest01.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFamilyTest01.html index edf635504..9841506bf 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFamilyTest01.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/fontFamilyTest01.html @@ -5,15 +5,15 @@ -
j
-
u
+
j
+
u
\ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3cProblemTest01.html b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3cProblemTest01.html index 4bff1e8a4..db6bb4d57 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3cProblemTest01.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3cProblemTest01.html @@ -5,7 +5,7 @@ + + +

Adjacent sibling combinator inside :has()

+
Panel 1 (no hint follows)
+

Some text

+
Panel 2 (hint follows)
+
Important hint near panel 2
+
Panel 3 (no hint follows)
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasBasicSelectionTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasBasicSelectionTest.html new file mode 100644 index 000000000..c8af70499 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasBasicSelectionTest.html @@ -0,0 +1,40 @@ + + + + + :has() basic selection + + + +

Basic :has() usage

+
+
+

Card without image

+
+
+ pic +

Card with image

+
+
+

Warning card

+
+
+ +
    +
  • Item A
  • +
  • Item B +
      +
    • Item B.1
    • +
    +
  • +
  • Item C
  • +
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasChildSelectorTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasChildSelectorTest.html new file mode 100644 index 000000000..18d021758 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasChildSelectorTest.html @@ -0,0 +1,34 @@ + + + + + :has() with child selector + + + +

Child combinator inside :has()

+
+
no title
+
+
+
Title present
+

Content

+
+ +
+
Header only
+
+
+
+ pic +
A figure
+
+

With figure child

+
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasGeneralSiblingSelectorTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasGeneralSiblingSelectorTest.html new file mode 100644 index 000000000..69322eaef --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasGeneralSiblingSelectorTest.html @@ -0,0 +1,22 @@ + + + + + :has() with general sibling selector + + + +

General sibling combinator inside :has()

+
Note A (no footnote later)
+

Some unrelated text

+
Another block
+
Note B (has later footnote)
+

Intervening paragraph

+
Footnote for Note B
+
Note C (no footnote later)
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasNegationTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasNegationTest.html new file mode 100644 index 000000000..899d18e5d --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasNegationTest.html @@ -0,0 +1,37 @@ + + + + + :has() with :not() + + + +

:has() with negation

+
    +
  • OK item
  • +
  • Missing .ok class
  • +
+
    +
  • OK item
  • +
  • Another OK item
  • +
+ +
+ inactive badge +

Card with inactive badge

+
+
+ active badge +

Card with active badge

+
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasNestedHasTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasNestedHasTest.html new file mode 100644 index 000000000..0a1441f7d --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasNestedHasTest.html @@ -0,0 +1,62 @@ + + + + + Nested :has() + + + +

Nested :has() cases

+
+
+

No image here

+
+
+
+
+ pic +

Has image

+
+
+ +
+

Plain section

+
    +
  • alpha
  • +
  • beta
  • +
+
+
+

Selected inside

+
    +
  • gamma
  • +
  • delta
  • +
+
+ +
+
+
A
+
B
+
+
+
+
+
X
+
Y
+
+
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithBoxModelTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithBoxModelTest.html new file mode 100644 index 000000000..2ee6165e7 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithBoxModelTest.html @@ -0,0 +1,50 @@ + + + + + :has() with box-model properties + + + +

:has() with box-model changes

+
+

Card without thumbnail

+
+
+ + Card with thumbnail +
+ +
+

Plain article

+
+
+
By Author • 2025
+

Article with metadata

+
+ + + + + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithDisplayVisibilityTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithDisplayVisibilityTest.html new file mode 100644 index 000000000..4e222b195 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithDisplayVisibilityTest.html @@ -0,0 +1,50 @@ + + + + + :has() with display/visibility + + + +

:has() with display and visibility

+
Panels are styled if they contain .flag, even if the flag is not visible.
+ +
+
+

No flag here.

+
+
+ +
+
+

Contains a visible flag FLAG!

+
+
+ +
+
+

Contains a hidden flag

+
+
+ +
+
+

Contains an invisible flag

+
+
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithFormControlsTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithFormControlsTest.html new file mode 100644 index 000000000..d51a80f2b --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithFormControlsTest.html @@ -0,0 +1,62 @@ + + + + + :has() with form controls + + + +

:has() with form controls

+
+
+ Account +
+ +
+
+ +
+
+ +
+
+ +
+
+
+ +
+
+ Preferences +
+ +
+
+ +
+
+ +
+
+
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithPositioningTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithPositioningTest.html new file mode 100644 index 000000000..7a6ffa044 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithPositioningTest.html @@ -0,0 +1,36 @@ + + + + + :has() with positioning + + + +

:has() with positioned/float children

+
+

Plain wrapper without special child

+
+
+
ABS
+

Wrapper with absolutely positioned child

+
+
+
REL
+

Wrapper with relatively positioned child

+
+
+ FLOAT +

Wrapper with floated child

+
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithPseudoElementsInteractionTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithPseudoElementsInteractionTest.html new file mode 100644 index 000000000..78857aac1 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithPseudoElementsInteractionTest.html @@ -0,0 +1,32 @@ + + + + + :has() with ::before/::after + + + +

:has() interaction with pseudo-elements

+
+

No special mark here.

+
+
+

Contains a mark inside.

+
+
+
+

Nested structures with a deep mark.

+
+
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithTableStructuresTest.html b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithTableStructuresTest.html new file mode 100644 index 000000000..676c33bff --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/css/HasPseudoClassTest/hasWithTableStructuresTest.html @@ -0,0 +1,57 @@ + + + + + :has() with table structures + + + +

:has() with tables

+ + + + + + + + + + + + + + + + + + + +
Header AHeader BHeader C
123
Wide cellok
456
+ + + + + + + + + + +
AlphaBeta
GammaDelta
+ + \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/blockElementLineHeightTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/blockElementLineHeightTest.html index 4646c6782..f32c7f252 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/blockElementLineHeightTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/blockElementLineHeightTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_blockElementLineHeightTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_blockElementLineHeightTest.pdf index 1107387cc..7c6b55e51 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_blockElementLineHeightTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_blockElementLineHeightTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_getMaxLineHeightWhenThereAreFewInlineElementsInTheBoxTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_getMaxLineHeightWhenThereAreFewInlineElementsInTheBoxTest.pdf index fea349e52..d1573f9e3 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_getMaxLineHeightWhenThereAreFewInlineElementsInTheBoxTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_getMaxLineHeightWhenThereAreFewInlineElementsInTheBoxTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_inlineBlockElementLineHeightTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_inlineBlockElementLineHeightTest.pdf index fa65be4cc..f857fc234 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_inlineBlockElementLineHeightTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_inlineBlockElementLineHeightTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_inlineElementLineHeightTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_inlineElementLineHeightTest.pdf index 7086df9f0..b8a603182 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_inlineElementLineHeightTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_inlineElementLineHeightTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontLengthTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontLengthTest.pdf index 83dc64882..ce4db9623 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontLengthTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontLengthTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontMaxCoeffTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontMaxCoeffTest.pdf index e8bab080a..ec254a986 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontMaxCoeffTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontMaxCoeffTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontNormalTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontNormalTest.pdf index 5d9bde408..7f5e04770 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontNormalTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontNormalTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontNumberTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontNumberTest.pdf index 0f514e1f2..16ba918b0 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontNumberTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontNumberTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontPercentageTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontPercentageTest.pdf index bf3f0ec1f..f0323aaf1 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontPercentageTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightFreeSansFontPercentageTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightNotoSansFontMaxCoeffTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightNotoSansFontMaxCoeffTest.pdf index 8975ca5d9..ab4bcc983 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightNotoSansFontMaxCoeffTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightNotoSansFontMaxCoeffTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightNotoSansFontNormalTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightNotoSansFontNormalTest.pdf index f494d1013..aa78cf148 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightNotoSansFontNormalTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightNotoSansFontNormalTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightStratFontTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightStratFontTest.pdf index 69ec2ddde..2a3131f7e 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightStratFontTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightStratFontTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightWithDiffFontsTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightWithDiffFontsTest.pdf index a866400db..2b72ba457 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightWithDiffFontsTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_lineHeightWithDiffFontsTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_notoSansNormalLineHeightLineBoxMinHeightTest.pdf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_notoSansNormalLineHeightLineBoxMinHeightTest.pdf index 5483f0aea..4e2e47f06 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_notoSansNormalLineHeightLineBoxMinHeightTest.pdf and b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/cmp_notoSansNormalLineHeightLineBoxMinHeightTest.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/getMaxLineHeightWhenThereAreFewInlineElementsInTheBoxTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/getMaxLineHeightWhenThereAreFewInlineElementsInTheBoxTest.html index 02eb72196..429e9e552 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/getMaxLineHeightWhenThereAreFewInlineElementsInTheBoxTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/getMaxLineHeightWhenThereAreFewInlineElementsInTheBoxTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/inlineBlockElementLineHeightTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/inlineBlockElementLineHeightTest.html index 4d6564b1f..a7e110af7 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/inlineBlockElementLineHeightTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/inlineBlockElementLineHeightTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/inlineElementLineHeightTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/inlineElementLineHeightTest.html index 6ba2dfed5..fc05d1ebd 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/inlineElementLineHeightTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/inlineElementLineHeightTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontLengthTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontLengthTest.html index 4a6b6dd81..da5f38849 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontLengthTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontLengthTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontMaxCoeffTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontMaxCoeffTest.html index 7eb2fa965..cf510b6b7 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontMaxCoeffTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontMaxCoeffTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontNormalTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontNormalTest.html index f01024365..b9a34e5e3 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontNormalTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontNormalTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontNumberTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontNumberTest.html index ce5203748..dd1a763d7 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontNumberTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontNumberTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontPercentageTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontPercentageTest.html index 1fde348df..eb5ecae67 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontPercentageTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightFreeSansFontPercentageTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightNotoSansFontMaxCoeffTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightNotoSansFontMaxCoeffTest.html index 3f34e5cf9..d161bcc10 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightNotoSansFontMaxCoeffTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightNotoSansFontMaxCoeffTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightNotoSansFontNormalTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightNotoSansFontNormalTest.html index a4c91afe9..2cb8eb37f 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightNotoSansFontNormalTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightNotoSansFontNormalTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightStratFontTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightStratFontTest.html index 7ea12101f..d75fbd83f 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightStratFontTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightStratFontTest.html @@ -5,11 +5,11 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightWithDiffFontsTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightWithDiffFontsTest.html index 6a6c8c3fb..bc1ec60ce 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightWithDiffFontsTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/lineHeightWithDiffFontsTest.html @@ -5,11 +5,11 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsDisplayInlineBlockTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsDisplayInlineBlockTest.html index 39af28b34..6eede884c 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsDisplayInlineBlockTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsDisplayInlineBlockTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsDisplayInlineTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsDisplayInlineTest.html index 425bbd88c..7ba4fa1b5 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsDisplayInlineTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsDisplayInlineTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsTest.html index a36c82450..a702cca6f 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightBlockElementsTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsDisplayBlockTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsDisplayBlockTest.html index 824644aaa..b6bea5b27 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsDisplayBlockTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsDisplayBlockTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsDisplayInlineBlockTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsDisplayInlineBlockTest.html index 5ffd46c1c..a1939c060 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsDisplayInlineBlockTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsDisplayInlineBlockTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsTest.html index 1c76e5f47..df0a40de8 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/littleLineHeightInlineElementsTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/notoSansNormalLineHeightLineBoxMinHeightTest.html b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/notoSansNormalLineHeightLineBoxMinHeightTest.html index c9a998e6a..3944456ec 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/notoSansNormalLineHeightLineBoxMinHeightTest.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/notoSansNormalLineHeightLineBoxMinHeightTest.html @@ -5,7 +5,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/FreeSans.ttf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/FreeSans.ttf deleted file mode 100644 index 4b06bd782..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/FreeSans.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/LICENSE_OFL.txt b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/LICENSE_OFL.txt deleted file mode 100644 index d952d62c0..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/LICENSE_OFL.txt +++ /dev/null @@ -1,92 +0,0 @@ -This Font Software is licensed under the SIL Open Font License, -Version 1.1. - -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font -creation efforts of academic and linguistic communities, and to -provide a free and open framework in which fonts may be shared and -improved in partnership with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply to -any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software -components as distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, -deleting, or substituting -- in part or in whole -- any of the -components of the Original Version, by changing formats or by porting -the Font Software to a new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, -modify, redistribute, and sell modified and unmodified copies of the -Font Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, in -Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the -corresponding Copyright Holder. This restriction only applies to the -primary font name as presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created using -the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/NOTICE.txt b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/NOTICE.txt deleted file mode 100644 index 9fd9d21ea..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/NOTICE.txt +++ /dev/null @@ -1,4 +0,0 @@ -Please notice that the following fonts are used with the mentioned below licenses. - -* NotoSans-Regular - SIL Open Font License, Version 1.1. -* FreeSans - GPL license you can find following the link: https://www.gnu.org/licenses \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/NotoSans-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/NotoSans-Regular.ttf deleted file mode 100644 index a1b8994ed..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/NotoSans-Regular.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/TextPropertiesTest/enspEmspThinspTest06.html b/src/test/resources/com/itextpdf/html2pdf/css/TextPropertiesTest/enspEmspThinspTest06.html index 74b427e9e..cfaddf096 100644 --- a/src/test/resources/com/itextpdf/html2pdf/css/TextPropertiesTest/enspEmspThinspTest06.html +++ b/src/test/resources/com/itextpdf/html2pdf/css/TextPropertiesTest/enspEmspThinspTest06.html @@ -4,7 +4,7 @@ diff --git a/src/test/resources/com/itextpdf/html2pdf/element/SvgTest/resources/valid-005.ttf b/src/test/resources/com/itextpdf/html2pdf/element/SvgTest/resources/valid-005.ttf deleted file mode 100644 index 4bd5fac0c..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/element/SvgTest/resources/valid-005.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBorderWithWrongRowspanTable.pdf b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBorderWithWrongRowspanTable.pdf new file mode 100644 index 000000000..32aa266e4 Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBorderWithWrongRowspanTable.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBordersRowspanOnPageSplit.pdf b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBordersRowspanOnPageSplit.pdf new file mode 100644 index 000000000..4a6305636 Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBordersRowspanOnPageSplit.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBordersRowspanOnPageSplit2.pdf b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBordersRowspanOnPageSplit2.pdf new file mode 100644 index 000000000..94569344b Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/cmp_collapsedBordersRowspanOnPageSplit2.pdf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/element/TableTest/collapsedBordersRowspanOnPageSplit.html b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/collapsedBordersRowspanOnPageSplit.html new file mode 100644 index 000000000..8fddd7a16 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/collapsedBordersRowspanOnPageSplit.html @@ -0,0 +1,21 @@ + + +
+ + + + + + + + +
+ Text 0 + + + Text 1
+ Test 2
+ Text 3
+ Text 4 +
+
diff --git a/src/test/resources/com/itextpdf/html2pdf/element/TableTest/collapsedBordersRowspanOnPageSplit2.html b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/collapsedBordersRowspanOnPageSplit2.html new file mode 100644 index 000000000..d43bb7f43 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/element/TableTest/collapsedBordersRowspanOnPageSplit2.html @@ -0,0 +1,27 @@ + + +
+ + + + + + + + + + + +
+ Text 0 + + + Text 1
+ Test 2 +
+
+ + Text 3
+ Text 4 +
+
diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/Ahem.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/Ahem.ttf new file mode 100644 index 000000000..306f065ef Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/fonts/Ahem.ttf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/BSD-3.txt b/src/test/resources/com/itextpdf/html2pdf/fonts/BSD-3.txt new file mode 100644 index 000000000..df2fdad8d --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/fonts/BSD-3.txt @@ -0,0 +1,13 @@ +Note: This license has also been called the “New BSD License” or “Modified BSD License”. See also the 2-clause BSD License. + +Copyright 2026 iText + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/CC0-1.0.txt b/src/test/resources/com/itextpdf/html2pdf/fonts/CC0-1.0.txt new file mode 100644 index 000000000..af469a003 --- /dev/null +++ b/src/test/resources/com/itextpdf/html2pdf/fonts/CC0-1.0.txt @@ -0,0 +1,29 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + +CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: +i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; +ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; +iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; +v. rights protecting the extraction, dissemination, use and reuse of data in a Work; +vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and +vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. +2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. +3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. +4. Limitations and Disclaimers. +a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. +b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. +c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. +d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/FreeSans.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/FreeSans.ttf index 4b06bd782..6de62ebf6 100644 Binary files a/src/test/resources/com/itextpdf/html2pdf/fonts/FreeSans.ttf and b/src/test/resources/com/itextpdf/html2pdf/fonts/FreeSans.ttf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/TextPropertiesTest/FreeSans_new.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/FreeSans_new.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/TextPropertiesTest/FreeSans_new.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/FreeSans_new.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/css/TextPropertiesTest/FreeSans_old.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/FreeSans_old.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/TextPropertiesTest/FreeSans_old.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/FreeSans_old.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/GNU General Public License.txt b/src/test/resources/com/itextpdf/html2pdf/fonts/GNU General Public License.txt similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/LineHeightTest/resources/GNU General Public License.txt rename to src/test/resources/com/itextpdf/html2pdf/fonts/GNU General Public License.txt diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/LICENSE.txt b/src/test/resources/com/itextpdf/html2pdf/fonts/LICENSE.txt deleted file mode 100644 index d64569567..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/fonts/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/LICENSE_OFL.txt b/src/test/resources/com/itextpdf/html2pdf/fonts/LICENSE_OFL-1.1.txt similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/LICENSE_OFL.txt rename to src/test/resources/com/itextpdf/html2pdf/fonts/LICENSE_OFL-1.1.txt diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/Lato-Black.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/Lato-Black.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/Lato-Black.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/Lato-Black.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/Lato-Hairline.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/Lato-Hairline.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/Lato-Hairline.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/Lato-Hairline.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/Lato-Italic.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/Lato-Italic.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/Lato-Italic.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/Lato-Italic.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/Lato-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/Lato-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/Lato_fonts/Lato-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/Lato-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/NOTICE.txt b/src/test/resources/com/itextpdf/html2pdf/fonts/NOTICE.txt index 3d7877600..070fa3e07 100644 --- a/src/test/resources/com/itextpdf/html2pdf/fonts/NOTICE.txt +++ b/src/test/resources/com/itextpdf/html2pdf/fonts/NOTICE.txt @@ -1,118 +1,64 @@ - This software uses following fonts under the following licenses: - | MathJax_Math-Italic font | OFL-1.1 | Link to GitHub issue where authors confirm SIL OFL lisence for MathJax fonts: "https://github.com/mathjax/MathJax/issues/1856" - | NotoSansCJK font | OFL-1.1 | - | NotoSansCJKjp font | OFL-1.1 | - | Amaranth font | OFL-1.1 | - | NotoNaskhArabic-Regular | OFL-1.1 | In development version of font based on commit 4cdde035fd5138d6653a2176ba728b5b6f8cc533 (30.10.2019) from repository: "https://github.com/googlefonts/noto-fonts" - | NotoEmoji-Regular | SIL Open Font License v1.1 | OFL.txt | - | SpaceMono-Regular | SIL Open Font License v1.1 | OFL.txt |(29.04.2024) - | StyleScript-Regular | SIL Open Font License v1.1 | OFL.txt |(29.04.2024) - | Orbitron-Regular | SIL Open Font License v1.1 | OFL.txt |(29.04.2024) - | Bokor-Regular | SIL Open Font License v1.1 | OFL.txt |(30.04.2024) - | NotoSansJP-Bold.ttf | OFL-1.1 | OFL.txt |(07.05.2024) - | NotoSansJP-Regular.ttf | OFL-1.1 | OFL.txt - | OpenSans-Regular.ttf | OFL-1.1 | OFL.txt |(07.05.2024) - | OpenSans-Bold.ttf | OFL-1.1 | OFL.txt |(07.05.2024) - | Roboto-Regular.ttf | Apache-2.0 | LICENSE.txt |(17.11.2024) - | FreeSans.ttf | GPL | GPL license you can find following the link: https://www.gnu.org/licenses | - ------------------------------------------------------------------------------------------------------------------------- - -MathJax_Math-Italic font, NotoSansCJK font, NotoSansCJKjp font, Amaranth are used under the following license: - -Copyright 2018 The Noto Project Authors (github.com/googlei18n/noto-fonts) - -Copyright (c) 2011, Gesine Todt (hallo@gesine-todt.de), -with Reserved Font Name Amaranth. - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. +Ahem.ttf | CC0-1.0 | CC0-1.0.txt | Based on "https://www.w3.org/Style/CSS/Test/Fonts/Ahem/" (06.02.2026) +Amaranth-Regular.woff | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Amaranth" (26.01.2026) +Bokor-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Bokor" (06.02.2026) +FreeSans.ttf | GPL license | GNU General Public License.txt | Based on "https://savannah.gnu.org/projects/freefont" (28.01.2026) +FreeSans_new.ttf | GPL license | GNU General Public License.txt | Based on "https://savannah.gnu.org/projects/freefont" (28.01.2026) +FreeSans_old.ttf | GPL license | GNU General Public License.txt | Based on "https://savannah.gnu.org/projects/freefont" (28.01.2026) +Lato-Black.ttf | OFL-1.1 | LICENSE_OFL-1.1.txt | Based on "https://www.latofonts.com/lato-free-fonts/" (28.01.2026) +Lato-Hairline.ttf | OFL-1.1 | LICENSE_OFL-1.1.txt | Based on "https://www.latofonts.com/lato-free-fonts/" (28.01.2026) +Lato-Italic.ttf | OFL-1.1 | LICENSE_OFL-1.1.txt | Based on "https://www.latofonts.com/lato-free-fonts/" (28.01.2026) +Lato-Regular.ttf | OFL-1.1 | LICENSE_OFL-1.1.txt | Based on "https://www.latofonts.com/lato-free-fonts/" (28.01.2026) +MathJax_Math-Italic.otf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on commit 85e47d7801b2dea6c15878ac7b3dcf62cfd659b5 (08.04.2020) from repository: "https://github.com/mathjax/MathJax/" +NotoColorEmoji.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Color+Emoji" (27.01.2026) +NotoEmoji-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Emoji" (26.01.2026) +NotoNaskhArabic-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on commit 4cdde035fd5138d6653a2176ba728b5b6f8cc533 (30.10.2019) from repository: "https://github.com/googlefonts/noto-fonts" +NotoSans-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on commit 4cdde035fd5138d6653a2176ba728b5b6f8cc533 (30.10.2019) from repository: "https://github.com/googlefonts/noto-fonts" +NotoSansArabic-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+Arabic" (05.02.2026) +NotoSansArabic-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+Arabic" (05.02.2026) +NotoSansCJK-Regular.ttc | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on commit 165c01b46ea533872e002e0785ff17e44f6d97d8 (30.04.2021) from repository: "Based on "https://github.com/googlefonts/noto-cjk" +NotoSansCJK-Regular.woff2 | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on commit 165c01b46ea533872e002e0785ff17e44f6d97d8 (30.04.2021) from repository: "https://github.com/googlefonts/noto-cjk" +NotoSansCJKjp-Regular.otf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on commit 9b0f1436e455d902de067a2501422e5dc71ad16b (30.06.2024) from repository "Based on "https://github.com/notofonts/noto-cjk/tree" +NotoSansJP-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+JP" (08.02.2026) +NotoSansJP-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+JP" (08.02.2026) +NotoSansJPThin-Regular.woff2 | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+JP" (08.02.2026) +NotoSansCJKsc-Light.otf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on commit 165c01b46ea533872e002e0785ff17e44f6d97d8 (30.04.2021) in repository: "https://github.com/notofonts/noto-cjk" +NotoSansGurmukhi-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+Gurmukhi" (06.02.2026) +NotoSansGurmukhi-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+Gurmukhi" (06.02.2026) +NotoSansMyanmar-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+Myanmar" (06.02.2026) +NotoSansMyanmar-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+Myanmar" (06.02.2026) +NotoSansOriya-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+Oriya" (06.02.2026) +NotoSansOriya-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Sans+Oriya" (06.02.2026) +NotoSerifBengali-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Bengali" (06.02.2026) +NotoSerifBengali-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Bengali" (06.02.2026) +NotoSerifCJKjp-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on commit 9b0f1436e455d902de067a2501422e5dc71ad16b (30.06.2024) in repository: "https://github.com/notofonts/noto-cjk" +NotoSerifDevanagari-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Devanagari" (05.02.2026) +NotoSerifDevanagari-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Devanagari" (05.02.2026) +NotoSerifGujarati-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Gujarati" (05.02.2026) +NotoSerifGujarati-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Gujarati" (05.02.2026) +NotoSerifHebrew-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Hebrew" (05.02.2026) +NotoSerifHebrew-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Hebrew" (05.02.2026) +NotoSerifKannada-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Kannada" (05.02.2026) +NotoSerifKannada-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Kannada" (05.02.2026) +NotoSerifKhmer-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Khmer" (05.02.2026) +NotoSerifKhmer-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Khmer" (05.02.2026) +NotoSerifMalayalam-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Malayalam" (05.02.2026) +NotoSerifMalayalam-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Malayalam" (05.02.2026) +NotoSerifMyanmar-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Myanmar" (05.02.2026) +NotoSerifMyanmar-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Myanmar" (05.02.2026) +NotoSerifTamil-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Tamil" (05.02.2026) +NotoSerifTamil-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Tamil" (05.02.2026) +NotoSerifTelugu-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Telugu" (05.02.2026) +NotoSerifTelugu-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Telugu" (05.02.2026) +NotoSerifThai-Bold.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Thai" (05.02.2026) +NotoSerifThai-Regular.ttf | SIL Open Font License v1.1 | LICENSE_OFL-1.1.txt | Based on "https://fonts.google.com/noto/specimen/Noto+Serif+Thai" (05.02.2026) +open-iconic.ttf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on commit 1d1e8885c5031874b32f4e480e371ce2b1c24144 (03.07.2014) from repository: "https://github.com/iconic/open-iconic" +Orbitron-Regular.otf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Orbitron" (05.02.2026) +Roboto-Regular.ttf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Roboto" (05.02.2026) +RobotoSerif-Bold.ttf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Roboto+Serif" (05.02.2026) +RobotoSerif-BoldItalic.ttf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Roboto+Serif" (05.02.2026) +RobotoSerif-Italic.ttf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Roboto+Serif" (05.02.2026) +RobotoSerif-Regular.ttf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Roboto+Serif" (05.02.2026) +SpaceMono-Regular.ttf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Space+Mono" (05.02.2026) +StyleScript-Regular.otf | SIL Open Font License v1.1 | LICENSE-OFL-1.1.txt | Based on "https://fonts.google.com/specimen/Style+Script" (06.02.2026) + +All fonts under w3c-test-fonts directory | BSD-3 | BSD-3.txt | w3c.org (27.01.2026) \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/fonts/NotoColorEmoji.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoColorEmoji.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/SurrogatePairsTests/fonts/NotoColorEmoji.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoColorEmoji.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansArabic-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansArabic-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansArabic-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansArabic-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansArabic-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansArabic-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansArabic-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansArabic-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/web-fonts/NotoSansCJK-Regular.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansCJK-Regular.woff2 similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/web-fonts/NotoSansCJK-Regular.woff2 rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansCJK-Regular.woff2 diff --git a/src/test/resources/com/itextpdf/html2pdf/css/BorderRadiusTest/NotoSansCJKsc-Light.otf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansCJKsc-Light.otf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/BorderRadiusTest/NotoSansCJKsc-Light.otf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansCJKsc-Light.otf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansGurmukhi-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansGurmukhi-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansGurmukhi-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansGurmukhi-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansGurmukhi-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansGurmukhi-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansGurmukhi-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansGurmukhi-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansJPThin-Regular.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansJPThin-Regular.woff2 new file mode 100644 index 000000000..291e1aaf1 Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansJPThin-Regular.woff2 differ diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansMyanmar-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansMyanmar-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansMyanmar-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansMyanmar-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansMyanmar-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansMyanmar-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansMyanmar-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansMyanmar-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansOriya-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansOriya-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansOriya-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansOriya-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansOriya-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansOriya-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSansOriya-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSansOriya-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifBengali-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifBengali-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifBengali-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifBengali-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifBengali-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifBengali-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifBengali-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifBengali-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifDevanagari-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifDevanagari-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifDevanagari-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifDevanagari-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifDevanagari-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifDevanagari-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifDevanagari-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifDevanagari-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifGujarati-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifGujarati-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifGujarati-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifGujarati-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifGujarati-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifGujarati-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifGujarati-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifGujarati-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifHebrew-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifHebrew-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifHebrew-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifHebrew-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifHebrew-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifHebrew-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifHebrew-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifHebrew-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifKannada-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifKannada-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifKannada-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifKannada-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifKannada-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifKannada-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifKannada-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifKannada-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifKhmer-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifKhmer-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifKhmer-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifKhmer-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifKhmer-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifKhmer-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifKhmer-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifKhmer-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifMalayalam-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifMalayalam-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifMalayalam-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifMalayalam-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifMalayalam-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifMalayalam-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifMalayalam-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifMalayalam-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifMyanmar-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifMyanmar-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifMyanmar-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifMyanmar-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifMyanmar-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifMyanmar-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifMyanmar-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifMyanmar-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifTamil-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifTamil-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifTamil-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifTamil-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifTamil-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifTamil-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifTamil-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifTamil-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifTelugu-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifTelugu-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifTelugu-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifTelugu-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifTelugu-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifTelugu-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifTelugu-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifTelugu-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifThai-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifThai-Bold.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifThai-Bold.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifThai-Bold.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifThai-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifThai-Regular.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/FontProviderTest/NotoSerifThai-Regular.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/NotoSerifThai-Regular.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/OFL.txt b/src/test/resources/com/itextpdf/html2pdf/fonts/OFL.txt deleted file mode 100644 index 1456c1809..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/fonts/OFL.txt +++ /dev/null @@ -1,97 +0,0 @@ -Copyright (c) , (), -with Reserved Font Name . -Copyright (c) , (), -with Reserved Font Name . -Copyright (c) , (). - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/OpenSans-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/OpenSans-Regular.ttf deleted file mode 100644 index 67803bb64..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/fonts/OpenSans-Regular.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Bold.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Bold.ttf new file mode 100644 index 000000000..6f44306be Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Bold.ttf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-BoldItalic.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-BoldItalic.ttf new file mode 100644 index 000000000..55b58d371 Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-BoldItalic.ttf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Italic.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Italic.ttf new file mode 100644 index 000000000..f5c68c754 Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Italic.ttf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Regular.ttf new file mode 100644 index 000000000..509e4fdd5 Binary files /dev/null and b/src/test/resources/com/itextpdf/html2pdf/fonts/RobotoSerif-Regular.ttf differ diff --git a/src/test/resources/com/itextpdf/html2pdf/css/CssFormsTest/open-iconic.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/open-iconic.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/CssFormsTest/open-iconic.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/open-iconic.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-003.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-003.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-003.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-003.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-004.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-004.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-004.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-004.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-005.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-005.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-005.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-005.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-006.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-006.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-006.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-006.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-007.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-007.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-extraneous-data-007.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-extraneous-data-007.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/blocks-metadata-padding-001.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-metadata-padding-001.woff2 similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/blocks-metadata-padding-001.woff2 rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-metadata-padding-001.woff2 diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-overlap-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-overlap-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-overlap-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-overlap-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-overlap-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-overlap-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-overlap-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-overlap-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-overlap-003.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-overlap-003.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/blocks-overlap-003.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/blocks-overlap-003.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-4-byte-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-4-byte-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-4-byte-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-4-byte-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-4-byte-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-4-byte-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-4-byte-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-4-byte-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-compLength-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-compLength-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-compLength-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-compLength-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-extraneous-data-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-extraneous-data-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-extraneous-data-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-extraneous-data-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-origLength-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-origLength-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-origLength-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-origLength-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-origLength-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-origLength-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-origLength-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-origLength-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-003.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-003.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-003.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-003.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-004.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-004.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-004.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-004.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-005.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-005.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/directory-overlaps-005.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-overlaps-005.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/directory-table-order-002.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-table-order-002.woff2 similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/directory-table-order-002.woff2 rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/directory-table-order-002.woff2 diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/header-flavor-001.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-flavor-001.woff2 similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/header-flavor-001.woff2 rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-flavor-001.woff2 diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/header-flavor-002.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-flavor-002.woff2 similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/header-flavor-002.woff2 rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-flavor-002.woff2 diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-length-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-length-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-length-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-length-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-length-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-length-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-length-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-length-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-numTables-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-numTables-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-numTables-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-numTables-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-reserved-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-reserved-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-reserved-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-reserved-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/header-reserved-001.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-reserved-001.woff2 similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/header-reserved-001.woff2 rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-reserved-001.woff2 diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-signature-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-signature-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-signature-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-signature-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-totalSfntSize-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-totalSfntSize-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-totalSfntSize-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-totalSfntSize-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-totalSfntSize-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-totalSfntSize-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-totalSfntSize-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-totalSfntSize-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-totalSfntSize-003.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-totalSfntSize-003.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/header-totalSfntSize-003.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/header-totalSfntSize-003.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/privatedata-noeffect-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/privatedata-noeffect-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/privatedata-noeffect-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/privatedata-noeffect-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/privatedata-noeffect-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/privatedata-noeffect-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/privatedata-noeffect-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/privatedata-noeffect-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-compression-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-compression-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-compression-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-compression-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-compression-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-compression-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-compression-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-compression-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-compression-003.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-compression-003.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-compression-003.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-compression-003.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-compression-004.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-compression-004.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-compression-004.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-compression-004.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/tabledata-hmtx-transform-003.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-hmtx-transform-003.woff2 similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/tabledata-hmtx-transform-003.woff2 rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-hmtx-transform-003.woff2 diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-zlib-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-zlib-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/tabledata-zlib-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/tabledata-zlib-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-001.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-001.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-001.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-001.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-002.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-002.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-002.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-002.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-003.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-003.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-003.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-003.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-004.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-004.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-004.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-004.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/valid-005.ttf b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-005.ttf similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/valid-005.ttf rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-005.ttf diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-005.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-005.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-005.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-005.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-006.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-006.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-006.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-006.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-007.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-007.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-007.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-007.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-008.woff b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-008.woff similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/w3c/woff/resources/valid-008.woff rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/valid-008.woff diff --git a/src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/validation-off-012.woff2 b/src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/validation-off-012.woff2 similarity index 100% rename from src/test/resources/com/itextpdf/html2pdf/css/FontFaceTest/w3c-test-fonts/validation-off-012.woff2 rename to src/test/resources/com/itextpdf/html2pdf/fonts/w3c-test-fonts/validation-off-012.woff2 diff --git a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/LICENSE_OFL.txt b/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/LICENSE_OFL.txt deleted file mode 100644 index d952d62c0..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/LICENSE_OFL.txt +++ /dev/null @@ -1,92 +0,0 @@ -This Font Software is licensed under the SIL Open Font License, -Version 1.1. - -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font -creation efforts of academic and linguistic communities, and to -provide a free and open framework in which fonts may be shared and -improved in partnership with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply to -any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software -components as distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, -deleting, or substituting -- in part or in whole -- any of the -components of the Original Version, by changing formats or by porting -the Font Software to a new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, -modify, redistribute, and sell modified and unmodified copies of the -Font Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, in -Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the -corresponding Copyright Holder. This restriction only applies to the -primary font name as presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created using -the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/NOTICE.txt b/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/NOTICE.txt deleted file mode 100644 index 84bf05665..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/NOTICE.txt +++ /dev/null @@ -1,3 +0,0 @@ -Please notice that the following fonts are used with the mentioned below licenses. - -* NotoSans-Regular - SIL Open Font License, Version 1.1. \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/NotoSans-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/NotoSans-Regular.ttf deleted file mode 100644 index a1b8994ed..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/AddedFontIsReleased/NotoSans-Regular.ttf and /dev/null differ diff --git a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/LICENSE_OFL.txt b/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/LICENSE_OFL.txt deleted file mode 100644 index d952d62c0..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/LICENSE_OFL.txt +++ /dev/null @@ -1,92 +0,0 @@ -This Font Software is licensed under the SIL Open Font License, -Version 1.1. - -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font -creation efforts of academic and linguistic communities, and to -provide a free and open framework in which fonts may be shared and -improved in partnership with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply to -any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software -components as distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, -deleting, or substituting -- in part or in whole -- any of the -components of the Original Version, by changing formats or by porting -the Font Software to a new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, -modify, redistribute, and sell modified and unmodified copies of the -Font Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, in -Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the -corresponding Copyright Holder. This restriction only applies to the -primary font name as presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created using -the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/NOTICE.txt b/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/NOTICE.txt deleted file mode 100644 index 84bf05665..000000000 --- a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/NOTICE.txt +++ /dev/null @@ -1,3 +0,0 @@ -Please notice that the following fonts are used with the mentioned below licenses. - -* NotoSans-Regular - SIL Open Font License, Version 1.1. \ No newline at end of file diff --git a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/NotoSans-Regular.ttf b/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/NotoSans-Regular.ttf deleted file mode 100644 index a1b8994ed..000000000 Binary files a/src/test/resources/com/itextpdf/html2pdf/resolver/resource/LocalFontIsReleased/NotoSans-Regular.ttf and /dev/null differ