diff --git a/.idea/.idea.itext.html2pdf/.idea/.gitignore b/.idea/.idea.itext.html2pdf/.idea/.gitignore new file mode 100644 index 000000000..99d7761b4 --- /dev/null +++ b/.idea/.idea.itext.html2pdf/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/modules.xml +/.idea.itext.html2pdf.iml +/contentModel.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.itext.html2pdf/.idea/.name b/.idea/.idea.itext.html2pdf/.idea/.name new file mode 100644 index 000000000..d31327fb4 --- /dev/null +++ b/.idea/.idea.itext.html2pdf/.idea/.name @@ -0,0 +1 @@ +itext.html2pdf \ No newline at end of file diff --git a/.idea/.idea.itext.html2pdf/.idea/indexLayout.xml b/.idea/.idea.itext.html2pdf/.idea/indexLayout.xml new file mode 100644 index 000000000..7b08163ce --- /dev/null +++ b/.idea/.idea.itext.html2pdf/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.itext.html2pdf/.idea/vcs.xml b/.idea/.idea.itext.html2pdf/.idea/vcs.xml new file mode 100644 index 000000000..94a25f7f4 --- /dev/null +++ b/.idea/.idea.itext.html2pdf/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/AppNet.class b/AppNet.class new file mode 100644 index 000000000..da2f8baf5 Binary files /dev/null and b/AppNet.class differ diff --git a/InspectHeadersNet.groovy b/InspectHeadersNet.groovy new file mode 100644 index 000000000..cdba5b88a --- /dev/null +++ b/InspectHeadersNet.groovy @@ -0,0 +1,179 @@ +#!/usr/bin/env groovy +package com.itextpdf.copyright + +import groovy.cli.commons.CliBuilder +import groovy.ant.FileNameFinder + +void processScript(String... args) { + def time = System.currentTimeMillis() + def date = Calendar.getInstance() + + def scriptDir = "" + def inclList = "" + + def cli = new CliBuilder() + cli.h(type: Boolean, 'help') + cli.i(type: String, longOpt: 'includePattern', 'pattern in Ant\'s fileset format') + cli.d(type: String, longOpt: 'dir', 'base dir for search (LICENSE.md should be present in destination folder)') + def options = cli.parse(args) + + if (options == null) { + throw new ScriptException("", 101) + } + + if ( options.h ) { + cli.usage() + throw new ScriptException("", 0) + } + + if ( options.i ) { + inclListFile = options.i + println "Including files in list '$inclListFile'" + new File(inclListFile).eachLine { line -> + inclList = inclList + " " + line + } + } else { + println "Including all files" + inclList = '**/*.java **/*.cs **/*.nuspec' + } + + if ( options.arguments()[0] ) { + scriptDir = options.arguments()[0].trim() + } else if (options.d) { + scriptDir = options.d.trim() + } else { + scriptDir = new File("").getAbsolutePath() + } + println "Starting groovy script @ $scriptDir" + + def licenseFile = new File("${scriptDir}/LICENSE.md") + println "licenseFile is ${licenseFile.canonicalPath}" + + copyrightYear = "Copyright (c) 1998-" + date.get(Calendar.YEAR) + " Apryse Group NV" + def sb = new StringBuilder() + sb << "/*\n" + sb << "This file is part of the iText (R) project.\n" + sb << "" + copyrightYear + sb << "\n" + sb << "Authors: Apryse Software.\n\n" + sb << licenseFile.text + sb << " \n*/\n" + copyrightText = sb.toString() + def producerLine = /private static final String producerLine = iTextProductName \+ " " \+ release \+ " \\u00a92000-.*?Apryse Group NV";/ + + def sourceFolder = new File(scriptDir) + if ( ! sourceFolder.directory ) { + println "${sourceFolder.name} is not an existing folder" + println "Aborting port attempt" + return + } else { + println "Source folder is ${sourceFolder.canonicalPath}" + } + + def other_copyrights = [ + "Adobe" : /Copyright .* Adobe Systems Incorporated/, + "Apache" : /Copyright .* Apache Software Foundation/, + "AL2.0" : /Apache License, Version 2.0/, + "ZXing" : /Copyright .* ZXing authors/, + "Sun" : /Copyright .* Sun Microsystems, Inc./, + "Fontbox" : /Copyright .* www.fontbox.org/, + "SGI" : /Copyright .* Silicon Graphics, Inc./, + "Clipper" : /Copyright .* Angus Johnson/, + "Oracle" : /Copyright .* Oracle/, + "Zlib" : /Copyright .* ymnk, JCraft,Inc./, + "zlib" : /Copyright .* Lapo Luchini/, + "sboxes" : /Copyright: .* Dr B. R Gladman/, + "iharder" : /@author Robert Harder/, + "Google" : /Copyright .* Google Inc./, + "MIT" : /Distributed under MIT license/ + ] + +// needed when run on Windows + if ( File.separator.equals("\\") ) { + inclList = inclList.replace("/", "\\\\") + } + + fileList = new FileNameFinder().getFileNames(scriptDir, inclList) + fileList.each {fileStr -> + File file = new File(fileStr) + skip = false + + def content = new StringBuilder() + def changed = false + + if ( file.name.endsWith("package-info.java") ) { + skip = true + } + + if ( file.canonicalPath.contains("itext.kernel/bouncycastle") ) { + skip = true + } + + other_copyrights.each { author, copyright -> + if ( file.text.find(copyright) ) { + skip = true + } + } + + if ( !skip ) { + copyright = /Copyright .* Apryse/ + if ( file.text.find(copyright) ) { + file.eachLine('UTF-8') { line -> + if ( line.find(copyright) && !line.find(date.get(Calendar.YEAR) + "") ) { + println "[YEAR] ${line} - ${file.canonicalPath}" + if ( file.name.endsWith("AssemblyInfo.cs") ) { + content << "[assembly: AssemblyCopyright(\"" + copyrightYear + "\")]" + } else if ( file.name.endsWith(".nuspec") ) { + content << "" + "${copyrightYear}" + } else { + content << "" + copyrightYear + } + changed = true + } else { + content << line + } + content << "\n" + } + } else { + println "[MISSING] Copyright added to ${file.canonicalPath}" + content << copyrightText + content << file.getText('UTF-8') + changed = true + } + if ( changed ) { + file.write(content.toString(), "UTF8") + } + } + + copyrightTo = "COPYRIGHT_TO = .*?;" + if (file.name.contains("ProductData")) { + String contents = file.getText('UTF-8') + contents = contents.replaceAll( copyrightTo , "COPYRIGHT_TO = " + date.get(Calendar.YEAR) + ";") + file.write(contents, "UTF-8") + } + + // the following block of code makes sense only for 7.1. Drop these lines when 7.1 is no longer supported + if ( file.absolutePath.endsWith("kernel" + File.separator + "Version.java") ) { + String contents = file.getText('UTF-8') + contents = contents.replaceAll( producerLine, 'private static final String producerLine = iTextProductName + " " + release + " \\\\u00a92000-' + date.get(Calendar.YEAR) + ' iText Group NV";' ) + file.write(contents, "UTF-8") + } + } + + println "\nCopyright check took " + ( ( System.currentTimeMillis() - time ) / 1000 ) + " seconds." +} + +class ScriptException extends Exception { + int exitCode + + ScriptException(String message, int exitCode) { + super(message) + this.exitCode = exitCode + } +} + +try { + processScript(args) +} catch (ScriptException e) { + System.exit(e.exitCode) +} diff --git a/doxyfile b/doxyfile index a64ea8bfd..5c6a21a8a 100644 --- a/doxyfile +++ b/doxyfile @@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8 # title of most generated pages and in a few other places. # The default value is: My Project. -PROJECT_NAME = "pdfHTML 4.0.5 API" +PROJECT_NAME = "pdfHTML 5.0.0 API" # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version diff --git a/html2pdffilesToRemoveHeaders.txt b/html2pdffilesToRemoveHeaders.txt new file mode 100644 index 000000000..a8a5f0968 --- /dev/null +++ b/html2pdffilesToRemoveHeaders.txt @@ -0,0 +1,2615 @@ +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\Properties\AssemblyInfo.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\ConverterPropertiesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\ExtendedFontPropertiesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\ExtendedHtmlConversionITextTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\FontProviderTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\Html2ElementsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\HtmlConverterMetaInfoTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\HtmlConverterTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\HtmlResourceResolverUnitTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\ProcessorContextTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\SurrogatePairsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\actions\Html2PdfEventsHandlingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\actions\TestConfigurationEvent.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\actions\events\PdfHtmlProductEventTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\actions\events\PdfHtmlTestMetaInfo.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\actions\events\PdfHtmlTestProductEvent.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\DefaultTagWorkerFactoryTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\HtmlMetaInfoContainerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\OutlineHandlerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\layout\Html2PdfPropertyTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\layout\HtmlDocumentRendererIntegrationTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\layout\HtmlDocumentRendererTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\layout\PageCountRendererTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\layout\PageSizeParserTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\layout\PageTargetCountElementTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\layout\PageTargetCountRendererTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\layout\WidthDimensionContainerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\AbbrTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\BodyTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\BrTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\DisplayTableRowTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\DisplayTableTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\DivTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\InputTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\LiTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\PTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\PageCountWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\PreTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\SpanTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\SvgTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\tags\UlOlTagWorkerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\impl\util\WhiteSpaceCollapsingAndTrimmingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\util\LinkHelperTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attach\util\WaitingInlineElementsHelperTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attribute\AlignAttributeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attribute\HeightTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attribute\LangAttributeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attribute\NowrapAttributeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attribute\StyleDirectionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attribute\TextAlignTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\attribute\WidthTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\AbsolutePositionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BackgroundBlendModeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BackgroundClipTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BackgroundColorWithFormattingElementsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BackgroundOriginTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BackgroundRepeatTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BackgroundTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BlockFormattingContextTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BodyBackgroundTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BorderRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BorderTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BoxSizingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\BrTagTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\ClearTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CounterTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssCaseSensitivityTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssCollapsingMarginsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssEmptySelectorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssFormsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssInheritanceTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssNthChildSelectorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssNthOfTypeSelectorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssOpacityTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssOutlineTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssRemUnitValueTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssRootSelectorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssStyleSheetParserTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssStylesResolvingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\CssTransformTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\DeviceCmykTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\DisplayFlexTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\DisplayTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FlexAlgoTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FlexIntrinsicAspectRatioTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FloatAndAlignmentTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FloatAndFlexTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FloatTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FontFaceTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FontPropertyTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FontSelectorArialFontTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FontSelectorGenericFamiliesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FontSelectorTimesFontTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\FontSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\HeightTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\HorizontalAlignmentTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\HtmlCommentedTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\HyphenateTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\ImagesDpiTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\LineHeightTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\LinearGradientTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\ListCssTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\ListStyleImageLinearGradientTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\MarginTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\ObjectFitTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\OpacityTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\OrphansTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\OrphansWidowsUnitTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\OverflowTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\OverflowWrapTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\PaddingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\PageBreakTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\PageRuleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\PropertyValidationTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\PseudoElementsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\QuotesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\RelativeCssPathTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\TargetCounterTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\TextDecorationTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\TextPropertiesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\VerticalAlignmentInlineBlockTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\VerticalAlignmentTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\VisibilityTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\WidowsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\WidthTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\WordBreakTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\apply\impl\DefaultCssApplierFactoryTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\apply\util\BackgroundApplierUtilTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\apply\util\FlexApplierUtilTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\apply\util\OutlineApplierUtilTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\apply\util\TextDecorationApplierUtilTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\media\MediaRuleIntegrationTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\media\MediaRuleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\media\page\HtmlPageMarginBoxImageSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\media\page\PageMarginBoxIntegrationTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\media\page\fix_dimension\PageMarginBoxFixDimensionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\media\page\max_dimension\PageMarginBoxMaxDimensionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\media\page\min_dimension\PageMarginBoxMinDimensionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\resolve\CssContentPropertyResolverIntegrationTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\resolve\CssContentPropertyResolverTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\resolve\HtmlStylesToCssConverterIntegrationTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\resolve\HtmlStylesToCssConverterTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\resolve\func\counter\CssCounterManagerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\resolve\func\counter\PageTargetCountElementNodeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\selector\item\ConstantApplyingPseudoClassesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\selector\item\NonStandardNodesMatchingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\util\CssStyleSheetAnalyzerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\W3CCssTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background006aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background021Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background022Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background030Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background031Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background033Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background034Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background035Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background036Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background037Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background038Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background041Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background043Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background047Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background048Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background050Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background051Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background052Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background053Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background055Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background058Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background059Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background060Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background061Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background063Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background064Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background070Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background071Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background073Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background074Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background075Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background076Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background077Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background080Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background081Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background082Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background083Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background085Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background087Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background090Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background093Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background095Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background096Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background097Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background104Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background106Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background107Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background109Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background111Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background114Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background117Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background120Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background128Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background130Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background135Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background137Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background138Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background139Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background141Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background144Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background147Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background150Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background152Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background153Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background154Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background156Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background161Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background163Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background182Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background184Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background188Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background190Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background194Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background196Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background326Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background327Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background328Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background329Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\Background330Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachment009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundAttachmentAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundBgPos204Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundBgPos206Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundBgPos208Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundBody001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundBody002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundBody003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor021Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor022Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor030Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor031Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor032Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor033Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor034Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor035Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor036Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor037Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor038Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor039Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor041Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor042Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor043Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor044Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor045Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor046Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor047Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor048Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor050Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor051Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor055Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor057Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor058Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor059Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor060Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor061Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor062Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor063Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor064Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor065Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor066Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor067Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor069Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor071Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor072Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor076Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor077Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor079Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor080Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor081Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor082Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor083Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor084Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor085Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor086Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor087Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor088Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor089Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor091Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor092Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor096Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor097Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor098Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor099Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor102Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor104Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor105Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor106Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor107Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor108Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor109Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor111Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor112Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor116Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor117Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor118Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor119Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor120Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor121Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor122Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor123Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor124Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor125Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor126Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor127Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor128Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor129Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor130Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor131Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor132Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor133Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor134Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor135Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor136Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor137Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor138Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor139Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor140Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor141Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor142Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor143Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor144Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor145Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor174Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColor175Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundColorAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundCover001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundCover002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundCover003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundCover004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundHtmlBody001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIframes001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImage001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImage002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImage003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImage005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageCover001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageCover002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageCover003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageCover004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageCoverAttachment001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundImageTransparency001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundIntrinsic010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition030Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition031Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition032Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition041Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition042Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition043Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition044Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition052Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition053Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition054Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition055Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition064Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition065Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition066Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition067Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition076Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition077Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition088Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition089Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition090Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition102Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition104Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition109Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition110Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition111Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition112Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition113Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition114Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition115Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition116Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition117Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition118Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition119Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition120Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition121Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition122Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition123Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition124Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition125Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition126Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition127Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition128Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition129Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition130Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition131Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition132Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition133Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition134Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition135Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition136Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition137Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition138Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition139Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition140Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition141Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition142Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition143Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition144Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition145Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition146Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition147Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition148Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition149Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition150Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition151Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition202Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPosition203Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo001aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo001bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo001cTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo002aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo003aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo005aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo006aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo007aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundPositionAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeat001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeat002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeat003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeat004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeat005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRepeatAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundReset001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot012aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot012bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot013aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot013bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot014aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot014bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundRoot024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\backgrounds\BackgroundTransparency001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounter016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\generated_content\ContentCounters018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\AnonymousInlineInherit001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\AnonymousInlineInherit001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\BaselineBlockWithOverflow001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\BorderPaddingBleed001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\EmptyInline001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\EmptyInline002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\FractionalLineHeightTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineBox001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineBox002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext021Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext022Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\InlineFormattingContext023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\Leading001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineBoxHeight001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineBoxHeight002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight034Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight035Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight036Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight037Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight038Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight039Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight045Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight046Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight047Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight048Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight049Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight050Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight051Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight057Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight058Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight059Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight060Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight061Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight062Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight067Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight069Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight070Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight071Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight072Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight073Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight079Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight080Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight081Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight082Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight083Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight084Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight089Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight090Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight091Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight092Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight093Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight094Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight095Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight102Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight104Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight105Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight106Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight111Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight112Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight121Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight122Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight123Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight124Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight125Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight126Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight127Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight128Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeight129Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightAppliesTo016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightBleed001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightBleed002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightBleed003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightLargest001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightNormalRecommendation001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\LineHeightOofDescendants001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\ScrollableOverflowTentativeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign030Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign031Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign032Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign041Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign042Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign043Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign044Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign052Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign053Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign054Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign055Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign064Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign065Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign066Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign067Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign076Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign077Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign079Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign080Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign088Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign089Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign090Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign091Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign092Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign102Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign104Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign109Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign110Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign111Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign112Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign113Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign114Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign115Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign116Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign117Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign118Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign119Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign120Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlign121Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBaseline010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignBoxes001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignNegativeLeading001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignNegativeLeading001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignNestedTop001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignNestedTop001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignSub001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignSuper001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\linebox\VerticalAlignTopBottomPaddingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterIncrement003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterIncrement004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterIncrement005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterIncrement006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterIncrement007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterIncrement008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterIncrement009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterIncrement010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterReset003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterReset004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterReset005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterReset006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterReset007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterReset008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterReset009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\lists\CounterReset010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlock000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlock001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlock002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlock003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlock004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlock005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockHeight001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockHeight002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockNonReplacedHeight001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockNonReplacedHeight002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockReplacedHeight001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockReplacedHeight002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockReplacedHeight003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockReplacedWidth001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockReplacedWidth006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockWidth001ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockWidth001BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockWidth002ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\InlineBlockWidth002BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth034Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth035Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth036Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth037Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth038Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth039Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth045Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth046Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth047Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth048Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth049Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth050Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth051Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth057Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth058Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth059Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth060Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth061Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth062Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth067Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth069Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth070Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth071Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth072Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth073Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth079Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth080Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth081Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth082Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth083Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth084Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth089Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth090Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth091Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth092Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth093Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth094Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth095Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth102Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth104Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth105Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth106Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth107Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth108Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidth110Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthAppliesTo016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthPercentage001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthPercentage002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MaxWidthPercentage003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth034Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth035Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth036Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth037Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth038Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth039Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth045Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth046Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth047Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth048Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth049Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth050Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth051Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth057Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth058Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth059Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth060Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth061Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth062Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth067Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth069Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth070Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth071Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth072Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth073Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth079Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth080Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth081Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth082Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth083Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth084Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth089Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth090Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth091Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth092Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth093Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth094Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth095Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth102Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidth103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthAppliesTo016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthPercentage001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthPercentage002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\MinWidthPercentage003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width034Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width035Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width036Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width037Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width038Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width039Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width045Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width046Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width047Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width048Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width049Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width050Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width051Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width057Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width058Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width059Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width060Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width061Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width062Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width067Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width069Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width070Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width071Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width072Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width073Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width079Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width080Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width081Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width082Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width083Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width084Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width089Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width090Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width091Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width092Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width093Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width094Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width095Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width102Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\Width104Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthAppliesTo016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthInherit001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthNonReplacedInline001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthPercentage001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthPercentage002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthReplacedElement001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\normal_flow\WidthUndefined001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakAfter000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakAfter001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakAfter002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakAfter003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakAfter004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakAfter006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakAfter010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakBefore000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakBefore001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakBefore002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakBefore004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakBefore005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakBefore006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakBefore008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakBefore020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakMargins001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreakMargins002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreaks100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\pagination\PageBreaks101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedHeight001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedHeight004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedHeight010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedHeight011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedHeight012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedMaxHeight006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedMaxHeight010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedMaxHeight012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedWidth015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedWidth017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedWidth018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedWidth019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedWidth021Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedWidth022Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteNonReplacedWidth023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsoluteReplacedHeight001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\Abspos027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsposContainingBlock001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsposContainingBlock002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\AbsposContainingBlock007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\Bottom004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\Bottom005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\Bottom006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionAbsolute001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionAbsolute002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionAbsolute003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionAbsolute006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionAbsolute008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative030Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\PositionRelative031Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\positioning\TopOffset003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlign001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlign002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlign003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlign004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlign005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignInherit001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignWhiteSpace001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignWhiteSpace002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignWhiteSpace003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextAlignWhiteSpace004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent030Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent031Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent032Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent041Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent042Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent043Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent044Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent052Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent053Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent054Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent055Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent064Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent065Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent066Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent067Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent068Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent076Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent077Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent078Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent079Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent080Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent088Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent089Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent090Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent091Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent092Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent100Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent101Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent102Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent103Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent104Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent109Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent110Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent111Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent112Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent113Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent114Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndent115Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentInherited001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentIntrinsic001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentIntrinsic002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentIntrinsic003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentIntrinsic004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentOverflow001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentOverflow002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentOverflow003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentOverflow004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentPercent001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextIndentWrap001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransform001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransform002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransform003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransform004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransform005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformCapitalize001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformCapitalize002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformCapitalize003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformLowercase001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformUnicase001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformUppercase001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\TextTransformUppercase002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpace001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpace002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpace003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpace004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpace005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpace006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpace007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpace008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceAppliesTo015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceCollapsing001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceCollapsing002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceCollapsing003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceCollapsing004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceCollapsing005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceCollapsingBreaks001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceControlCharacters001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceGeneratedContentBefore001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceMixed001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceMixed002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceMixed003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceMixed004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNormal009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNowrap001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNowrap005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNowrap006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceNowrapAttribute001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpacePElement001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpacePre001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpacePre002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpacePre005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpacePre006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpacePre007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpacePreElement001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing021Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing022Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing030Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing031Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing032Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing033Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing034Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing035Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing036Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing037Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing038Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing039Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing040Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing041Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing042Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing043Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing044Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing045Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing046Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing047Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing048Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing049Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing050Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing051Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing052Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing053Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing054Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing055Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing056Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing057Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\text\WhiteSpaceProcessing058Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\ui\Overflow001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css21\ui\Overflow002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel148Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel149Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel149bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel150Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel151Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel152Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel153Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel27Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel27aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel27bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3ModselD1bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_178_ParsingNotAndPseudoElementsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_59_NegatedClassSelectorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_60_NegatedIdSelectorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_61_NegatedLinkPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_62_NegatedVisitedPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_63_NegatedHoverPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_64_NegatedActivePseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_65_NegatedFocusPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_66_NegatedTargetPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_66b_NegatedTargetPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_67_NegatedLangPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_68_NegatedEnabledPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_69_NegatedDisabledPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_70_NegatedCheckedPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_72_NegatedRootPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_72b_NegatedRootPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_73_NegatedNthChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_73b_NegatedNthChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_74_NegatedNthLastChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_75_NegatedNthOfTypePseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_77_NegatedFirstChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_77b_NegatedFirstChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_78_NegatedLastChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_78b_NegatedLastChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_80_NegatedLastOfTypePseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_81_NegatedOnlyChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\RootSiblingsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css3_selectors\SelectorsEmpty001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Background334Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundAttachment353Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClip010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClipColorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClipContentBox001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClipContentBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClipPaddingBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundClipRootTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundColorBodyPropagation001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundColorBodyPropagation002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundColorBodyPropagation004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundColorBodyPropagation005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundColorBorderBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundColorClipTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundColorPaddingBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundColorRootPropagation001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundGradientSubpixelFillsAreaTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImage001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImage002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImage003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImage004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImage005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImage006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImage007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImageCenteredTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImageCenteredWithBorderRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImageCoverZoomed1Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImageFirstLetterTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImageLargeWithAutoTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundImageTableCellsZoomedTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundMarginIframeRootTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundOrigin002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundOrigin003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundOrigin004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundOrigin005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundOrigin007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundOrigin008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundPaintOrder001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundPositionThreeFourValuesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundPropertiesGreaterThanImagesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundRepeatBpaceBontentBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundRepeatRound001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundRepeatRound002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundRoundedImageClipTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize021Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize022Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize030Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize031Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize032Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize033Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSize034Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeAppliesToBlockTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeAspectRatioTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeContain001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeContain002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeCover001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeCover002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeCover003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeOneValue1x1ImageTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizePercentageRootTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BackgroundSizeWithNegativeValueTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BgClipPadBoxWithBRTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BgColorAppliedToRIETest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BgPNegativePercentageComparisonTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BgPSubpixelAtBorderTentativeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderBottomLeftRadius004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderBottomLeftRadius005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderBottomRightRadius004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderBottomRightRadius005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderColorTransparentTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage10Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage11Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage12Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage13Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage14Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage15Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage16Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage1Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage2Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage3Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage4Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage6RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage6Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage7Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage8Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImage9Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageCalcRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageCalcTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageImageType003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageOutset001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageOutset002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageOutset003RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageOutset003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageRepeat005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageRepeatRoundTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageRoundAndStretchTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSlice001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSlice002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSlice003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSlice004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSlice005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSlice006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSlice007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSlicePercentageTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageSpace001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth008RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImageWidth008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderImagesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius002RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius003RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius004RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius005RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius006RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius007RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius009RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius010RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius011RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadius011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusClip002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusClipping002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusClippingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusDynamicFromNoRadiusRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusHorizontalValueIsZeroTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusInitialValue001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusOverflowHiddenTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusShorthand002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderRadiusStyle005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderTopLeftRadius004RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderTopLeftRadius004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderTopLeftRadius005RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderTopLeftRadius005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderTopRightRadius004RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderTopRightRadius004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderTopRightRadius005RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderTopRightRadius005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BorderWidthPixelSnapping001BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadOutSpreadWithoutBRTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadow001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadow002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadow003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadow004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadow005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowBodyTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowInsetSpreadWithoutBorderRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowInsetWithoutBorderRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowOutsetWithoutBorderRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowOverlapping001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowOverlapping002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowOverlapping003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowOverlapping004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\BoxShadowTableBorderCollapse001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\ChildMoveRevealsParentBackgroundRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\ColorBehindImagesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundClipBorderBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundClipContentBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundClipPaddingBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundClipTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundOriginBorderBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundOriginContentBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundOriginPaddingBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundSize001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundSizeContainTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BackgroundSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BorderImageRepeatRepeatTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BorderImageRepeatStretchTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BorderImageSourceTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\Css3BoxShadowTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\CssBorderRadius001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\FirstLetterSpaceNotSelectedTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\InsetBoxShadowScrollRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\InsetBoxShadowScrollTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\InsetBoxShadowStackingContextScrollTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\NoneAsImageLayerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\OrderOfImagesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\SubpixelRepeatNoRepeatMixTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderColorShorthandMissingBottomTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderColorShorthandMissingLeftTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderColorShorthandMissingRightTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderColorShorthandTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderColorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderStyleDoubleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderStyleShorthandMissingBottomTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderStyleShorthandMissingLeftTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderStyleShorthandTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderStyleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfBorderStyleValuesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\TtwfReftestBorderRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipBorderBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipBorderBoxWithPositionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipBorderBoxWithRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipBorderBoxWithSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipContentBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipContentBoxWithPositionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipContentBoxWithRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipContentBoxWithSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipPaddingBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipPaddingBoxWithPositionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipPaddingBoxWithRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipPaddingBoxWithSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_clip\ClipRoundedCornerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginBorderBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginBorderBoxWithPositionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginBorderBoxWithRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginBorderBoxWithSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginContentBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginContentBoxWithPositionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginContentBoxWithRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginContentBoxWithSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginPaddingBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginPaddingBoxWithPositionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginPaddingBoxWithRadiusTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_origin\OriginPaddingBoxWithSizeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_position\SubpixelPositionCenterTentativeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_repeat\BackgroundRepeatNoRepeatTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_repeat\BackgroundRepeatRepeatXTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_repeat\BackgroundRepeatRepeatYTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_repeat\BackgroundRepeatRoundRoundUpTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_repeat\BackgroundRepeatRoundTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_repeat\BackgroundRepeatSpaceTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\background_repeat\GradientRepeatSpacedWithBordersTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLClipC1RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLClipC3RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLClipC4RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLClipC6RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLClipI1RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLClipI3RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLClipI4RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLClipI6RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLPos2RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLPos3RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLPos4RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttLPos5RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_att_local\AttScrollPos1RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeContainTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeCoverContain001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeCoverContain002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeCoverSvgTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeCoverTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeNearZeroColorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeNearZeroGradientTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeNearZeroPngTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\BackgroundSizeNearZeroSvgTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector015Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector017Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector018Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector019Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector020Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector021Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector022Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector023Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector024Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector025Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector026Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector027Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector028Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\BackgroundSizeVector029Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxNpWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxNpWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxNpWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxNpWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxNpWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxNpWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxOWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxOWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxOWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxOWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxOWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TA32PxPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TAOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TAPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TAPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TAPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TAPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TAPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TAPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConNpWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConNpWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConNpWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConNpWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConNpWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConNpWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConOWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConOWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConOWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConOWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConOWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TConWTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovNpWNpHCTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovNpWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovNpWNpHVbCTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovNpWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovNpWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovNpWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovNpWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovNpWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovOWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovOWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovOWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovOWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovOWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\TCovWTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxANpWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxANpWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxANpWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxANpWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxANpWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxANpWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAOWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAOWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAOWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAOWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAOWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\Wi12PxAPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxNpWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxNpWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxNpWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxNpWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxNpWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxNpWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxOWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxOWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxOWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxOWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxOWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiA32PxPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiANpWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiANpWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiANpWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiANpWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiANpWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiANpWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAOWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAOWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAOWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAOWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAOWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiAPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConNpWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConNpWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConNpWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConNpWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConNpWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConNpWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConOWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConOWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConOWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConOWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConOWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiConWTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovNpWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovNpWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovNpWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovNpWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovNpWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovNpWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovOWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovOWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovOWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovOWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovOWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovOWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovPWNpHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovPWNpHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovPWOHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovPWOHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovPWPHTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\WiCovPWPHVbTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroHRatio5PxATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroHRatioA5PxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroHRatioAATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroHRatioConTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroHRatioCovTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroRatioNoD5PxATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroRatioNoDA5PxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroRatioNoDAATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroRatioNoDConTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroRatioNoDCovTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroWRatio5PxATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroWRatioA5PxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroWRatioAATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroWRatioConTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\bg_size\vector\ZeroWRatioCovTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\box_shadow\BoxShadowBlurDefinition001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BImImType003RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BImRepeat005RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BImRepeatRoundRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BImRoundAndStretchRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BImShorthand001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BImSlicePRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BImSpace001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BRClippingRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BRHorizontalValueIsZeroRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BWidthPixelSnapping001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Bg334RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgClip002RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgClip004RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgClip005RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgClipContentBoxRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgClipPaddingBoxTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgColorClipTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgGradientSubpixelFillsAreaRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgIm001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgImCeWithBRRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgImCoverZoomed1RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgImFirstLetterRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgImFirstLineRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgImLargeWithAutoRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgImTableCellsZoomedRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgOrigin002RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgOrigin004RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgOrigin005RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgOrigin006RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgOrigin007RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgPaintOrder001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgPosNgPComRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgPosSubpixelAtBRefTenTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgPosThreeFourValuesRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgRoundedImClipTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS002RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS006RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS021RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS025RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS026RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS027RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS028RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS029RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgS031RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BgSOneValue1X1ImRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BoxShadOutsetSpreadWithoutBRTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BoxShadow005RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BoxShadowBodyRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BoxShadowInsetSpreadWithoutBRTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BoxShadowInsetWithoutBRTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BoxShadowOutsetWithoutBRTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\BoxShadowTableBCollapse001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BImRepeatRepeatRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BImRepeatStretchRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BImSourceRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgClipBBoxRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgClipContentBoxRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgClipPaddingBoxRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgClipRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgOriginBBoxRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgOriginContentBoxRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgOriginPaddingBoxRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgS001RefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgSContainRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BgSRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\Css3BoxShadowRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\CssBoxShadowRef001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\FirstLetterSpaceNotSelectedRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\RefFilledBlack96PxSquareTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\RefIfThereIsNoRedTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\ReferenceTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\SixtyXSixtyGreenBgTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\SubpixelRepeatNoRepeatMixRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_backgrounds\reference\TtwfReftestBRRefTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityBasic00ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityBasic06ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityBasic10ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityClamping00BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityClamping10BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityOffscreenBTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityOffscreenMultipleBoxes1CTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityOffscreenMultipleBoxes2CTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T32OpacityOffscreenWithAlphaCTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T41Html4KeywordsATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T421RgbValuesMeaningBTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaA00ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaA06ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaA10ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaClampingA00BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaClampingA10BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaClipOutsideDeviceGamutBTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaFuncIntATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaFuncPctATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaFuncWhitespaceBTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaOnscreenBTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaOnscreenMultipleBoxesCTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T422RgbaValuesMeaningBTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T423Transparent1ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T423Transparent2ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_3\T43SvgKeywordsATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\BorderBottomColorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\BorderLeftColorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\BorderRightColorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\BorderTopColorTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Color001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Color002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Hex001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Hex002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Hex003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Hex004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgb001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgb002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgb003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgb004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgb005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgb006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgb007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgb008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgba001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgba002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgba003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgba004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgba005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgba006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgba007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_color_4\Rgba008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItems001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItems002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItems003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItems004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItems005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItems006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItems007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItems009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsBaselineOverflowNonVisibleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsBaselineTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsCenter2Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsCenterTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsFlexend2Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsFlexendTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsFlexstart2Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsFlexstartTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsStretch2Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AlignItemsStretchTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\AnonymousFlexItem004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\BasicBlockHoriz001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\BasicBlockVert001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\BasicFieldsetHoriz001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\BasicFieldsetVert001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\DefiniteSizes001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\DefiniteSizes002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\DefiniteSizes003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\DefiniteSizes004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\DefiniteSizes005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\DefiniteSizes006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\DisplayFlex001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\Flex001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\Flex002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\Flex003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\Flex004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgColumn016Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgRow001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgRow002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgRow003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgRow006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgRow007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgRow012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexAspectRatioImgRow014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBaseTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasis010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasisContent001ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasisContent001BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasisContent002ATest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexBasisContent002BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexDirectionColumnPercentageIgnoredTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexDirectionColumnReverseTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexDirectionColumnTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexDirectionDefaultTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexDirectionRowReverseTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexDirectionRowTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexFlow001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexFlow002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexGrow001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexGrow002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexGrow003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexGrow004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexGrow005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexGrow006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexGrow007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapDefaultTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapFlexingTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapHoriz001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapHoriz002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapNowrapTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapVert001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapVert002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapWrapReverseTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\FlexWrapWrapTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentHoriz001aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentHoriz001bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentHoriz002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentHoriz003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentHoriz004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentHoriz005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentHoriz006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentVert001aTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentVert001bTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentVert002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentVert003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentVert004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentVert005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentVert006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\JustifyContentWmvert001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\MinWidthAuto001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\MinWidthAuto003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\MinWidthAuto004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\MinWidthAuto005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowHoriz001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowHoriz002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowHoriz003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowHoriz004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowHoriz005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowVert001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowVert002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowVert003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowVert004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\OverflowVert005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\SizingHoriz001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\SizingHoriz002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\SizingVert001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_flexbox\SizingVert002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageBackground000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageBorders000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageMargin003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageProperties000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize000Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_page_3\PageSize010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\Outline001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\Outline002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\Outline007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\Outline008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\Outline009Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\Outline010Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\Outline012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\OutlineColor001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\OutlineOffset001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\OutlineStyle011Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\OutlineStyle012Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\OutlineStyle013Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\css_ui_3\OutlineStyle014Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Directory4Byte001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\DirectoryCompLength001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\DirectoryOrigLength001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\DirectoryOrigLength002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\DirectoryOverlaps001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\DirectoryOverlaps002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\DirectoryOverlaps005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\HeaderLength001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\HeaderLength002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\HeaderNumTables001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\HeaderReserved001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\HeaderSignature001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\HeaderTotalSfntSize001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\HeaderTotalSfntSize002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\HeaderTotalSfntSize003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\PrivatedataNoeffect001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\PrivatedataNoeffect002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\TabledataCompression001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\TabledataCompression002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\TabledataCompression003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\TabledataCompression004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\TabledataZlib001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Valid001Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Valid002Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Valid003Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Valid004Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Valid005Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Valid006Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Valid007Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\css\w3c\woff\Valid008Test.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\AbbrTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\AddressTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ArticleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\AsideTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\BTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\BdoTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\BlockquoteTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\BodyTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\BrTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\CaptionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\CenterTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\CiteTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\CodeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ColColgroupTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\DelTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\DfnTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\DivTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\EmTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\FigureTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\FormTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\HTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\HeaderFooterTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\HrTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\HtmlTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ITest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ImageTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\InputTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\InsTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\KbdTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\LabelTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\LinkTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ListItemTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ListTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\MainNavArticleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\MarkTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\MetaTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ObjectTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\OptGroupTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\OptionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ParagraphTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\PreTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\QTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\STest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\SampTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\ScriptTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\SectionTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\SelectTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\SmallTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\SpanTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\StrikeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\StrongTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\StyleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\SupSubTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\SvgTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\TableBodyTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\TableTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\TaggedPdfFormTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\TagsInsideButtonTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\TimeTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\TitleTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\TtTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\UTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\element\VarTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\events\PdfHtmlAcroformDocumentEventTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\events\PdfHtmlPageXofYEventHandlerTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\resolver\UriResolverTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\resolver\font\FontsUnicodeCoverageTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\resolver\form\NameResolverTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\resolver\resource\ExternalImageTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\resolver\resource\ExternalResourcesTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\resolver\resource\HtmlResourceResolverTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\resolver\resource\PathUtil.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\resolver\resource\ResourceReleaseResolverTest.cs +D:\DualLab\sharp\html2pdf\itext.tests\itext.html2pdf.tests\itext\html2pdf\utils\ImageSizeMeasuringListener.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\Html2PdfExtensions.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\Properties\AssemblyInfo.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\ByteBuffer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\ConverterProperties.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\HtmlConverter.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\PortUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\ProcessorContextCreator.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\actions\data\PdfHtmlProductData.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\actions\events\PdfHtmlProductEvent.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\Attacher.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\IHtmlProcessor.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\ITagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\ITagWorkerFactory.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\ProcessorContext.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\State.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\DefaultHtmlProcessor.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\DefaultTagWorkerFactory.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\DefaultTagWorkerMapping.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\HtmlMetaInfoContainer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\LinkContext.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\OutlineHandler.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\BodyHtmlStylesContainer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\DimensionContainer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\HeightDimensionContainer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\Html2PdfProperty.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\HtmlBodyStylesApplierHandler.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\HtmlDocument.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\HtmlDocumentRenderer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\HtmlPageBreak.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\HtmlPageBreakType.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageContextProcessor.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageContextProperties.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageCountElement.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageCountRenderer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageCountType.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageMarginBoxBuilder.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageSizeParser.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageTargetCountElement.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\PageTargetCountRenderer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\RunningElement.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\RunningElementContainer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\layout\WidthDimensionContainer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\ABlockTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\ATagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\AbbrTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\BodyTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\BrTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\ButtonTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\CaptionTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\ColTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\ColgroupTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\DisplayFlexTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\DisplayTableRowTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\DisplayTableTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\DivTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\HTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\HrTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\HtmlTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\IDisplayAware.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\ImgTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\InputTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\LiTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\LinkTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\MetaTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\ObjectTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\OptGroupTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\OptionTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\PTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\PageCountWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\PageMarginBoxWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\PlaceholderTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\PreTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\RunningElementTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\SelectTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\SpanTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\SvgTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\TableFooterTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\TableHeaderTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\TableTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\TdTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\TextAreaTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\ThTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\TitleTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\TrTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\impl\tags\UlOlTagWorker.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\util\AccessiblePropHelper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\util\ContextMappingHelper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\util\LinkHelper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\util\RowColHelper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\util\TrimUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\util\WaitingColgroupsHelper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\util\WaitingInlineElementsHelper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\wrapelement\ColWrapper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\wrapelement\ColgroupWrapper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\wrapelement\IWrapElement.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\wrapelement\SpanWrapper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\wrapelement\TableRowWrapper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\attach\wrapelement\TableWrapper.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\CssConstants.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\ICssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\ICssApplierFactory.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\BlockCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\BodyTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\CaptionCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\ColTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\ColgroupTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\CssContentLinearGradientApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\DefaultCssApplierFactory.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\DefaultTagCssApplierMapping.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\DisplayFlexTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\DisplayTableRowTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\DlTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\HrTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\HtmlTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\LiTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\PageMarginBoxCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\PlaceholderCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\SpanTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\TableTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\TdTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\TrTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\impl\UlOlTagCssApplier.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\BackgroundApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\BorderStyleApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\CounterProcessorUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\FlexApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\FloatApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\FontStyleApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\HyphenationApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\ListStyleApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\MarginApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\OpacityApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\OrphansWidowsApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\OutlineApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\OverflowApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\PaddingApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\PageBreakApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\PositionApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\SupportedColColgroupPropertiesUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\TextDecorationApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\TransformationApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\VerticalAlignmentApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\apply\util\WidthHeightApplierUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\page\CssRunningManager.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\page\PageMarginRunningElementNode.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\CssContentPropertyResolver.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\CssContext.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\DefaultCssResolver.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\HtmlStylesToCssConverter.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\UserAgentCss.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\func\counter\CounterDigitsGlyphStyle.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\func\counter\CssCounterManager.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\func\counter\PageCountElementNode.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\resolve\func\counter\PageTargetCountElementNode.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\css\util\CssStyleSheetAnalyzer.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\exceptions\CssApplierInitializationException.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\exceptions\Html2PdfException.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\exceptions\TagWorkerInitializationException.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\html\AttributeConstants.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\html\HtmlUtils.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\html\TagConstants.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\logs\Html2PdfLogMessageConstant.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\resolver\font\DefaultFontProvider.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\resolver\form\FormFieldNameResolver.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\resolver\form\RadioCheckResolver.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\resolver\resource\HtmlResourceResolver.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\util\SvgProcessingUtil.cs +D:\DualLab\sharp\html2pdf\itext\itext.html2pdf\itext\html2pdf\util\TagProcessorMapping.cs +D:\DualLab\sharp\html2pdf\pdfHTML.nuspec diff --git a/itext.tests/itext.html2pdf.tests/Properties/AssemblyInfo.cs b/itext.tests/itext.html2pdf.tests/Properties/AssemblyInfo.cs index bdbde4ade..d47678735 100644 --- a/itext.tests/itext.html2pdf.tests/Properties/AssemblyInfo.cs +++ b/itext.tests/itext.html2pdf.tests/Properties/AssemblyInfo.cs @@ -5,9 +5,9 @@ [assembly: AssemblyTitle("iText.Html2Pdf.Tests")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("iText Group NV")] +[assembly: AssemblyCompany("Apryse Group NV")] [assembly: AssemblyProduct("iText")] -[assembly: AssemblyCopyright("Copyright (c) 1998-2023 iText Group NV")] +[assembly: AssemblyCopyright("Copyright (c) 1998-2023 Apryse Group NV")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -15,9 +15,9 @@ [assembly: Guid("ae4e5743-0665-4705-9a33-07ea57cdd269")] -[assembly: AssemblyVersion("4.0.5.0")] -[assembly: AssemblyFileVersion("4.0.5.0")] -[assembly: AssemblyInformationalVersion("4.0.5")] +[assembly: AssemblyVersion("5.0.0.0")] +[assembly: AssemblyFileVersion("5.0.0.0")] +[assembly: AssemblyInformationalVersion("5.0.0")] #if !NETSTANDARD2_0 [assembly: NUnit.Framework.Timeout(300000)] diff --git a/itext.tests/itext.html2pdf.tests/itext.html2pdf.tests.csproj b/itext.tests/itext.html2pdf.tests/itext.html2pdf.tests.csproj index 71089f635..6185fbe19 100644 --- a/itext.tests/itext.html2pdf.tests/itext.html2pdf.tests.csproj +++ b/itext.tests/itext.html2pdf.tests/itext.html2pdf.tests.csproj @@ -45,15 +45,17 @@ - + - + - + + + diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/ConverterPropertiesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/ConverterPropertiesTest.cs index 7406485a8..fd7c3afce 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/ConverterPropertiesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/ConverterPropertiesTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.Commons.Actions; using iText.Commons.Actions.Contexts; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/ExtendedFontPropertiesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/ExtendedFontPropertiesTest.cs index 8ee83c9cb..1961d6d61 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/ExtendedFontPropertiesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/ExtendedFontPropertiesTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/ExtendedHtmlConversionITextTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/ExtendedHtmlConversionITextTest.cs index c2795c2e5..b1b7a4e4a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/ExtendedHtmlConversionITextTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/ExtendedHtmlConversionITextTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/FontProviderTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/FontProviderTest.cs index dad75f431..febdb4d49 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/FontProviderTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/FontProviderTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/Html2ElementsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/Html2ElementsTest.cs index 674a4e34a..dba897e8b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/Html2ElementsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/Html2ElementsTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; @@ -298,6 +278,17 @@ public virtual void ConvertToElementsAndCreateTwoDocumentsTest() { , e.Message); } + [NUnit.Framework.Test] + //TODO: DEVSIX-3891 change the Assert after supporting the svg tag + [LogMessage(Html2PdfLogMessageConstant.WORKER_UNABLE_TO_PROCESS_OTHER_WORKER, LogLevel = LogLevelConstants + .ERROR)] + public virtual void HtmlToElementsSvgTest() { + String html = "" + "" + + ""; + IList lst = HtmlConverter.ConvertToElements(html); + NUnit.Framework.Assert.AreEqual(0, lst.Count); + } + private static void AddElementsToDocument(Document document, IList elements) { foreach (IElement elem in elements) { if (elem is IBlockElement) { diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlConverterMetaInfoTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlConverterMetaInfoTest.cs index a698e0128..ed6644cd3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlConverterMetaInfoTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlConverterMetaInfoTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlConverterTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlConverterTest.cs index 95eb316dc..be9ec0b9e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlConverterTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlConverterTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlResourceResolverUnitTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlResourceResolverUnitTest.cs index 2b4b9f657..620be1a38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlResourceResolverUnitTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/HtmlResourceResolverUnitTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/ProcessorContextTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/ProcessorContextTest.cs index 146ef84d2..b06262224 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/ProcessorContextTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/ProcessorContextTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; @@ -75,7 +55,7 @@ public virtual void DoNotResetFontProviderTest() { IXmlParser parser = new JsoupHtmlParser(); IDocumentNode documentNode = parser.Parse(fileInputStream, null); ConverterProperties converterProperties = new ConverterProperties(); - converterProperties.SetFontProvider(new _DefaultFontProvider_91(false, true, false)); + converterProperties.SetFontProvider(new _DefaultFontProvider_71(false, true, false)); // Do nothing here. That should result in an exception. IHtmlProcessor processor = new DefaultHtmlProcessor(converterProperties); Document doc1 = processor.ProcessDocument(documentNode, new PdfDocument(new PdfWriter(new MemoryStream())) @@ -91,8 +71,8 @@ public virtual void DoNotResetFontProviderTest() { ; } - private sealed class _DefaultFontProvider_91 : DefaultFontProvider { - public _DefaultFontProvider_91(bool baseArg1, bool baseArg2, bool baseArg3) + private sealed class _DefaultFontProvider_71 : DefaultFontProvider { + public _DefaultFontProvider_71(bool baseArg1, bool baseArg2, bool baseArg3) : base(baseArg1, baseArg2, baseArg3) { } diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/SurrogatePairsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/SurrogatePairsTest.cs index 4eacc021f..e968e64be 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/SurrogatePairsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/SurrogatePairsTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/Html2PdfEventsHandlingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/Html2PdfEventsHandlingTest.cs index 8e372d6bb..9a76b5951 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/Html2PdfEventsHandlingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/Html2PdfEventsHandlingTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/TestConfigurationEvent.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/TestConfigurationEvent.cs index a877e950e..ea6fd6672 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/TestConfigurationEvent.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/TestConfigurationEvent.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlProductEventTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlProductEventTest.cs index 631dff0e2..e532d315c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlProductEventTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlProductEventTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlTestMetaInfo.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlTestMetaInfo.cs index 2461f7a9b..de0572b3b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlTestMetaInfo.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlTestMetaInfo.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlTestProductEvent.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlTestProductEvent.cs index 83641fc25..f8e428101 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlTestProductEvent.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/actions/events/PdfHtmlTestProductEvent.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/DefaultTagWorkerFactoryTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/DefaultTagWorkerFactoryTest.cs index fe9c5a20c..a16d31b15 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/DefaultTagWorkerFactoryTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/DefaultTagWorkerFactoryTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/HtmlMetaInfoContainerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/HtmlMetaInfoContainerTest.cs index cc5eb1281..219ba97ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/HtmlMetaInfoContainerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/HtmlMetaInfoContainerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/OutlineHandlerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/OutlineHandlerTest.cs index e89f41ee5..fc3ea65aa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/OutlineHandlerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/OutlineHandlerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/Html2PdfPropertyTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/Html2PdfPropertyTest.cs index 9b00dca8c..3b9550e6f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/Html2PdfPropertyTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/Html2PdfPropertyTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/HtmlDocumentRendererIntegrationTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/HtmlDocumentRendererIntegrationTest.cs index 2fadf8cca..bfa98d4ce 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/HtmlDocumentRendererIntegrationTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/HtmlDocumentRendererIntegrationTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/HtmlDocumentRendererTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/HtmlDocumentRendererTest.cs index b4e83242e..0196b0ccd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/HtmlDocumentRendererTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/HtmlDocumentRendererTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.Html2pdf; using iText.IO.Source; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageCountRendererTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageCountRendererTest.cs index 5a0aa65a3..0fb463025 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageCountRendererTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageCountRendererTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageSizeParserTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageSizeParserTest.cs index f490dccb5..65dc23c78 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageSizeParserTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageSizeParserTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.Html2pdf.Logs; using iText.Kernel.Geom; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageTargetCountElementTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageTargetCountElementTest.cs index 1856b8131..a3bf1ffe8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageTargetCountElementTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageTargetCountElementTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageTargetCountRendererTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageTargetCountRendererTest.cs index 553b92dde..f35eeeea9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageTargetCountRendererTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/PageTargetCountRendererTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/WidthDimensionContainerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/WidthDimensionContainerTest.cs index 4857f205b..412233dfa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/WidthDimensionContainerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/WidthDimensionContainerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest.cs deleted file mode 100644 index c7d3827d4..000000000 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest.cs +++ /dev/null @@ -1,82 +0,0 @@ -/* -This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText 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 . -*/ -using System; -using System.IO; -using iText.Html2pdf.Attach.Impl.Layout; -using iText.Html2pdf.Attach.Impl.Layout.Form.Element; -using iText.Kernel.Colors; -using iText.Kernel.Pdf; -using iText.Kernel.Utils; -using iText.Layout; -using iText.Layout.Element; -using iText.Layout.Properties; -using iText.Test; - -namespace iText.Html2pdf.Attach.Impl.Layout.Form.Renderer { - [NUnit.Framework.Category("IntegrationTest")] - public class ButtonColorTest : ExtendedITextTest { - public static readonly String SOURCE_FOLDER = iText.Test.TestUtil.GetParentProjectDirectory(NUnit.Framework.TestContext - .CurrentContext.TestDirectory) + "/resources/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest/"; - - public static readonly String DESTINATION_FOLDER = NUnit.Framework.TestContext.CurrentContext.TestDirectory - + "/test/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest/"; - - [NUnit.Framework.OneTimeSetUp] - public static void BeforeClass() { - CreateOrClearDestinationFolder(DESTINATION_FOLDER); - } - - [NUnit.Framework.Test] - public virtual void ButtonsWithColorTest() { - String outPdf = DESTINATION_FOLDER + "buttonsWithColor.pdf"; - String cmpPdf = SOURCE_FOLDER + "cmp_buttonsWithColor.pdf"; - DrawButtons(outPdf, cmpPdf, ColorConstants.RED); - } - - [NUnit.Framework.Test] - public virtual void ButtonsWithoutColorTest() { - String outPdf = DESTINATION_FOLDER + "buttonsWithoutColor.pdf"; - String cmpPdf = SOURCE_FOLDER + "cmp_buttonsWithoutColor.pdf"; - DrawButtons(outPdf, cmpPdf, null); - } - - private static void DrawButtons(String outPdf, String cmpPdf, Color color) { - using (PdfDocument pdfDocument = new PdfDocument(new PdfWriter(new FileStream(outPdf, FileMode.Create)))) { - using (Document document = new Document(pdfDocument)) { - Button button = new Button("button"); - button.Add(new Paragraph("button child")); - InputButton inputButton = new InputButton("input button"); - button.SetProperty(Html2PdfProperty.FORM_FIELD_FLATTEN, false); - inputButton.SetProperty(Html2PdfProperty.FORM_FIELD_FLATTEN, false); - button.SetProperty(Html2PdfProperty.FORM_FIELD_VALUE, "button value"); - inputButton.SetProperty(Html2PdfProperty.FORM_FIELD_VALUE, "input button value"); - button.SetProperty(Property.FONT_COLOR, color == null ? null : new TransparentColor(color)); - inputButton.SetProperty(Property.BACKGROUND, color == null ? null : new Background(color)); - document.Add(button); - document.Add(inputButton); - } - } - NUnit.Framework.Assert.IsNull(new CompareTool().CompareByContent(outPdf, cmpPdf, DESTINATION_FOLDER)); - } - } -} diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/AbbrTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/AbbrTagWorkerTest.cs index 262852ae9..cd686661d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/AbbrTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/AbbrTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/BodyTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/BodyTagWorkerTest.cs index 5faad417a..5ede23093 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/BodyTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/BodyTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/BrTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/BrTagWorkerTest.cs index 955ddc818..2c5c91d8f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/BrTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/BrTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DisplayTableRowTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DisplayTableRowTagWorkerTest.cs index d2993116e..2060735a5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DisplayTableRowTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DisplayTableRowTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DisplayTableTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DisplayTableTagWorkerTest.cs index 705ecd298..e0147c72b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DisplayTableTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DisplayTableTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DivTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DivTagWorkerTest.cs index d8f828b5b..b01d581d8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DivTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/DivTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/InputTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/InputTagWorkerTest.cs index b76450394..d7f28f35b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/InputTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/InputTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/LiTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/LiTagWorkerTest.cs index 66fd2e3be..c52315889 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/LiTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/LiTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PTagWorkerTest.cs index 44d1ae46b..2b4213355 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PageCountWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PageCountWorkerTest.cs index 5e3e83cd3..c9b1a0e3f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PageCountWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PageCountWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PreTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PreTagWorkerTest.cs index 2ac2e0f6e..5e139dd33 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PreTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/PreTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/SpanTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/SpanTagWorkerTest.cs index 8e9993ef2..22f1b67a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/SpanTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/SpanTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/SvgTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/SvgTagWorkerTest.cs index 2947e7171..44220f150 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/SvgTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/SvgTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/UlOlTagWorkerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/UlOlTagWorkerTest.cs index 6311c79d8..d14b56699 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/UlOlTagWorkerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/tags/UlOlTagWorkerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/util/WhiteSpaceCollapsingAndTrimmingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/util/WhiteSpaceCollapsingAndTrimmingTest.cs index bda01ff18..e2849d395 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/util/WhiteSpaceCollapsingAndTrimmingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/impl/util/WhiteSpaceCollapsingAndTrimmingTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/util/LinkHelperTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/util/LinkHelperTest.cs index ff6e97c0c..2a6fc6cc9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/util/LinkHelperTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/util/LinkHelperTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/util/WaitingInlineElementsHelperTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/util/WaitingInlineElementsHelperTest.cs index 734e94109..19604ad15 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/util/WaitingInlineElementsHelperTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attach/util/WaitingInlineElementsHelperTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/AlignAttributeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/AlignAttributeTest.cs index 371cbabf9..57d312566 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/AlignAttributeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/AlignAttributeTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/HeightTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/HeightTest.cs index 162d02485..f44b1572d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/HeightTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/HeightTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/LangAttributeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/LangAttributeTest.cs index ade7e8156..f9cc924bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/LangAttributeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/LangAttributeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/NowrapAttributeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/NowrapAttributeTest.cs index b8103f263..363840a38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/NowrapAttributeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/NowrapAttributeTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/StyleDirectionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/StyleDirectionTest.cs index 666a5bf77..f8b446cbd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/StyleDirectionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/StyleDirectionTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/TextAlignTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/TextAlignTest.cs index cf7fb95fc..8c716edc2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/TextAlignTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/TextAlignTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/WidthTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/WidthTest.cs index bb8efc726..c945a2665 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/WidthTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/attribute/WidthTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/AbsolutePositionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/AbsolutePositionTest.cs index a0754383c..1c762b37f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/AbsolutePositionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/AbsolutePositionTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundBlendModeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundBlendModeTest.cs index c73559bf5..274c2e74b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundBlendModeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundBlendModeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundClipTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundClipTest.cs index 9c782a687..7f5e9e8f6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundClipTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundClipTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundColorWithFormattingElementsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundColorWithFormattingElementsTest.cs index ac48982c2..9a18e4530 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundColorWithFormattingElementsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundColorWithFormattingElementsTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundOriginTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundOriginTest.cs index 75d7413d8..e4f09f073 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundOriginTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundOriginTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundRepeatTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundRepeatTest.cs index 3e8408c88..6511af7cd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundRepeatTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundRepeatTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundTest.cs index 910974c7a..931fce1fe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BackgroundTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BlockFormattingContextTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BlockFormattingContextTest.cs index fb28d337a..6648dcfb7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BlockFormattingContextTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BlockFormattingContextTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BodyBackgroundTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BodyBackgroundTest.cs index f539414f1..c4bb86550 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BodyBackgroundTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BodyBackgroundTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BorderRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BorderRadiusTest.cs index 6e2303551..40e3ccac1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BorderRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BorderRadiusTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BorderTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BorderTest.cs index d2a0ba6c7..d867ee499 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BorderTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BorderTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BoxSizingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BoxSizingTest.cs index 1d626134b..99069d49b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BoxSizingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BoxSizingTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BrTagTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BrTagTest.cs index 55e105b6f..377912216 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BrTagTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/BrTagTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ClearTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ClearTest.cs index 2c4a99837..01c6e161d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ClearTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ClearTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CounterTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CounterTest.cs index 60cdd4380..bf4255650 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CounterTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CounterTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssCaseSensitivityTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssCaseSensitivityTest.cs index 0558d45f8..a91b6a370 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssCaseSensitivityTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssCaseSensitivityTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssCollapsingMarginsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssCollapsingMarginsTest.cs index e456a4a56..0a42174f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssCollapsingMarginsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssCollapsingMarginsTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssEmptySelectorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssEmptySelectorTest.cs index 055af9a00..8f2ddd852 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssEmptySelectorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssEmptySelectorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssFormsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssFormsTest.cs index 220b1df3e..cd2333c2c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssFormsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssFormsTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssInheritanceTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssInheritanceTest.cs index 3400e9e8d..dc787d3a3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssInheritanceTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssInheritanceTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssNthChildSelectorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssNthChildSelectorTest.cs index 899c7b7b9..5ed294b8e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssNthChildSelectorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssNthChildSelectorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssNthOfTypeSelectorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssNthOfTypeSelectorTest.cs index b6a61490a..7e6d599d0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssNthOfTypeSelectorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssNthOfTypeSelectorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssOpacityTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssOpacityTest.cs index 5f76c288f..5d4455332 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssOpacityTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssOpacityTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssOutlineTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssOutlineTest.cs index da545dcc3..bcb49f30b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssOutlineTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssOutlineTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssRemUnitValueTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssRemUnitValueTest.cs index 6ec06bfa9..859f1cfaa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssRemUnitValueTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssRemUnitValueTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssRootSelectorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssRootSelectorTest.cs index 7b66351ca..9c8db0cd7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssRootSelectorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssRootSelectorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssStyleSheetParserTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssStyleSheetParserTest.cs index ca906a82d..ac6741c37 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssStyleSheetParserTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssStyleSheetParserTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssStylesResolvingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssStylesResolvingTest.cs index c0826fe70..069b6df28 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssStylesResolvingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssStylesResolvingTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssTransformTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssTransformTest.cs index d7fc38e78..a06025bb6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssTransformTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/CssTransformTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DeviceCmykTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DeviceCmykTest.cs index 0d9a43b6a..13d371560 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DeviceCmykTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DeviceCmykTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DisplayFlexTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DisplayFlexTest.cs index 0359f23a6..ec205cd64 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DisplayFlexTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DisplayFlexTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. @@ -23,9 +23,9 @@ You should have received a copy of the GNU Affero General Public License using System; using System.Collections.Generic; using System.IO; +using iText.Forms.Form.Element; using iText.Html2pdf; using iText.Html2pdf.Attach.Impl.Layout; -using iText.Html2pdf.Attach.Impl.Layout.Form.Element; using iText.Html2pdf.Logs; using iText.Layout.Element; using iText.Layout.Properties; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DisplayTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DisplayTest.cs index 64a169eb3..6f0dfacf3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DisplayTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/DisplayTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FlexAlgoTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FlexAlgoTest.cs index 88453ef31..ef5ce1208 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FlexAlgoTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FlexAlgoTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FlexIntrinsicAspectRatioTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FlexIntrinsicAspectRatioTest.cs index 2f1f83de7..481ad06f4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FlexIntrinsicAspectRatioTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FlexIntrinsicAspectRatioTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatAndAlignmentTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatAndAlignmentTest.cs index 5322c61ad..25c922c8a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatAndAlignmentTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatAndAlignmentTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatAndFlexTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatAndFlexTest.cs index b55b84931..a5b3bf875 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatAndFlexTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatAndFlexTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatTest.cs index 83667cafa..7c9f4838a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FloatTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontFaceTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontFaceTest.cs index de53118c1..5d075a541 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontFaceTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontFaceTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontPropertyTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontPropertyTest.cs index 2beefb003..9104b8bef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontPropertyTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontPropertyTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorArialFontTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorArialFontTest.cs index 92c47f6fe..d90314fc2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorArialFontTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorArialFontTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorGenericFamiliesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorGenericFamiliesTest.cs index f79dc2a38..73a5cf914 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorGenericFamiliesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorGenericFamiliesTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorTimesFontTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorTimesFontTest.cs index 4b7f5f0b5..22352b8e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorTimesFontTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSelectorTimesFontTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSizeTest.cs index 20b5f4a75..e450e664e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/FontSizeTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HeightTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HeightTest.cs index 43705d8d2..f5ea17ec5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HeightTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HeightTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HorizontalAlignmentTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HorizontalAlignmentTest.cs index 22f2aab3b..9ac80c8cb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HorizontalAlignmentTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HorizontalAlignmentTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HtmlCommentedTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HtmlCommentedTest.cs index f597f06c0..06e0214fc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HtmlCommentedTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HtmlCommentedTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HyphenateTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HyphenateTest.cs index 803baff71..9e5cebc57 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HyphenateTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/HyphenateTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ImagesDpiTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ImagesDpiTest.cs index 3204ad667..fce7d2a46 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ImagesDpiTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ImagesDpiTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/LineHeightTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/LineHeightTest.cs index 07766dfdf..1c6e26ac6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/LineHeightTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/LineHeightTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/LinearGradientTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/LinearGradientTest.cs index c9907f4d9..0b2e57fa0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/LinearGradientTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/LinearGradientTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ListCssTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ListCssTest.cs index 68e59bfc7..41a418594 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ListCssTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ListCssTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ListStyleImageLinearGradientTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ListStyleImageLinearGradientTest.cs index f3edd71a0..ff891e9a4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ListStyleImageLinearGradientTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ListStyleImageLinearGradientTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/MarginTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/MarginTest.cs index c044f7c28..f9992876e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/MarginTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/MarginTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ObjectFitTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ObjectFitTest.cs index 4983464aa..999776331 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ObjectFitTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/ObjectFitTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OpacityTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OpacityTest.cs index d4ca331d1..d035e53dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OpacityTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OpacityTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OrphansTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OrphansTest.cs index 1cd03fdf4..d226349cb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OrphansTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OrphansTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OrphansWidowsUnitTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OrphansWidowsUnitTest.cs index 7fda254bd..f7e8c892a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OrphansWidowsUnitTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OrphansWidowsUnitTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OverflowTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OverflowTest.cs index 3cdb32dc2..1ecbbe20f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OverflowTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OverflowTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OverflowWrapTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OverflowWrapTest.cs index 26024dbe0..2fe93289d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OverflowWrapTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/OverflowWrapTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PaddingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PaddingTest.cs index 751c173d7..d2c95ff2a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PaddingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PaddingTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PageBreakTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PageBreakTest.cs index f53767cb7..09623c5d9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PageBreakTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PageBreakTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PageRuleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PageRuleTest.cs index 1c24494a9..bd780f6ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PageRuleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PageRuleTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PropertyValidationTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PropertyValidationTest.cs index fc1796fd6..c933fbeba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PropertyValidationTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PropertyValidationTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PseudoElementsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PseudoElementsTest.cs index 0e3b46eec..6b3490007 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PseudoElementsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/PseudoElementsTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/QuotesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/QuotesTest.cs index dc53b4f76..a03d029d3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/QuotesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/QuotesTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/RelativeCssPathTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/RelativeCssPathTest.cs index 983e4b225..8dd8696e1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/RelativeCssPathTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/RelativeCssPathTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TargetCounterTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TargetCounterTest.cs index f08400486..570536a84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TargetCounterTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TargetCounterTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TextDecorationTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TextDecorationTest.cs index c7677417c..1a859ae87 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TextDecorationTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TextDecorationTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; @@ -149,22 +129,24 @@ public virtual void CombinationOfLinesInTextDecorationTest() { [NUnit.Framework.Test] public virtual void TextDecorationColorEffectOnNestedElements01Test() { - // TODO DEVSIX-4719 replace cmp files once the issue is fixed ConvertToPdfAndCompare("textDecorationColorEffectOnNestedElements01", SOURCE_FOLDER, DESTINATION_FOLDER); } [NUnit.Framework.Test] public virtual void TextDecorationColorEffectOnNestedElements02Test() { - // TODO DEVSIX-4719 replace cmp files once the issue is fixed ConvertToPdfAndCompare("textDecorationColorEffectOnNestedElements02", SOURCE_FOLDER, DESTINATION_FOLDER); } [NUnit.Framework.Test] public virtual void TextDecorationColorEffectOnNestedElements03Test() { - // TODO DEVSIX-4719 replace cmp files once the issue is fixed ConvertToPdfAndCompare("textDecorationColorEffectOnNestedElements03", SOURCE_FOLDER, DESTINATION_FOLDER); } + [NUnit.Framework.Test] + public virtual void TextDecorationColorEffectOnNestedElements04Test() { + ConvertToPdfAndCompare("textDecorationColorEffectOnNestedElements04", SOURCE_FOLDER, DESTINATION_FOLDER); + } + [NUnit.Framework.Test] public virtual void TextDecorationNoneOnNestedElementsTest() { ConvertToPdfAndCompare("textDecorationNoneOnNestedElements", SOURCE_FOLDER, DESTINATION_FOLDER); diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TextPropertiesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TextPropertiesTest.cs index 77501e87b..ec28f1c07 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TextPropertiesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/TextPropertiesTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VerticalAlignmentInlineBlockTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VerticalAlignmentInlineBlockTest.cs index 638fcea16..a6f20490b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VerticalAlignmentInlineBlockTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VerticalAlignmentInlineBlockTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VerticalAlignmentTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VerticalAlignmentTest.cs index 004706a9a..bf3dcb925 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VerticalAlignmentTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VerticalAlignmentTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VisibilityTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VisibilityTest.cs index 47fdeef7e..f12e49038 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VisibilityTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/VisibilityTest.cs @@ -1,49 +1,29 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; +using iText.Forms.Logs; using iText.Html2pdf; -using iText.Html2pdf.Logs; using iText.Kernel.Utils; using iText.Test.Attributes; @@ -110,7 +90,7 @@ public virtual void VisiblePropertyInFormRadioButtonTest() { } [NUnit.Framework.Test] - [LogMessage(Html2PdfLogMessageConstant.ACROFORM_NOT_SUPPORTED_FOR_SELECT)] + [LogMessage(FormsLogMessageConstants.ACROFORM_NOT_SUPPORTED_FOR_SELECT)] public virtual void VisiblePropertyInFormDropdownListTest() { //TODO update cmp-file after DEVSIX-2090 and DEVSIX-1901 done String htmlFile = sourceFolder + "visiblePropertyInFormDropdownListTest.html"; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WidowsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WidowsTest.cs index 830023558..53283b96e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WidowsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WidowsTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WidthTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WidthTest.cs index ad6ab2160..c8e2bb23d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WidthTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WidthTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WordBreakTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WordBreakTest.cs index 4804d9fe8..7289f01d3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WordBreakTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/WordBreakTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/impl/DefaultCssApplierFactoryTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/impl/DefaultCssApplierFactoryTest.cs index f6564242f..c72d7bbf6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/impl/DefaultCssApplierFactoryTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/impl/DefaultCssApplierFactoryTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/BackgroundApplierUtilTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/BackgroundApplierUtilTest.cs index b76b74172..7186391f4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/BackgroundApplierUtilTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/BackgroundApplierUtilTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/FlexApplierUtilTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/FlexApplierUtilTest.cs index acf7eacd7..5a07c9a15 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/FlexApplierUtilTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/FlexApplierUtilTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/OutlineApplierUtilTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/OutlineApplierUtilTest.cs index 77480813f..099045803 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/OutlineApplierUtilTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/OutlineApplierUtilTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/TextDecorationApplierUtilTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/TextDecorationApplierUtilTest.cs new file mode 100644 index 000000000..2a85fed90 --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/apply/util/TextDecorationApplierUtilTest.cs @@ -0,0 +1,332 @@ +/* +This file is part of the iText (R) project. +Copyright (c) 1998-2023 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 . +*/ +using System; +using System.Collections.Generic; +using iText.Html2pdf.Css; +using iText.StyledXmlParser.Node; +using iText.Test; + +namespace iText.Html2pdf.Css.Apply.Util { + public class TextDecorationApplierUtilTest : ExtendedITextTest { + private static IElementNode CreateNewNode(IElementNode parent, String color, String line, String decorationStyle + ) { + IElementNode node = new TextDecorationApplierUtilTest.TextDecorationTestElementNode(parent); + if (color != null) { + node.GetStyles().Put(CssConstants.TEXT_DECORATION_COLOR, color); + } + if (line != null) { + node.GetStyles().Put(CssConstants.TEXT_DECORATION_LINE, line); + } + if (decorationStyle != null) { + node.GetStyles().Put(CssConstants.TEXT_DECORATION_STYLE, decorationStyle); + } + return node; + } + + [NUnit.Framework.Test] + public virtual void TextDecorationHasNoParentShouldNotAlterStyles() { + String color = "red"; + String line = "line-through"; + String style = "solid"; + IElementNode node = CreateNewNode(null, color, line, style); + TextDecorationApplierUtil.PropagateTextDecorationProperties(node); + NUnit.Framework.Assert.AreEqual(color, node.GetStyles().Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(line, node.GetStyles().Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(style, node.GetStyles().Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void ParentNodeHasNoStyleMapDoesNothing() { + IElementNode parent = new TextDecorationApplierUtilTest.TextDecorationTestElementNode(null); + parent.SetStyles(null); + String colorChild1 = "yellow"; + String lineChild1 = "line-under"; + String styleChild1 = "solid"; + TextDecorationApplierUtil.PropagateTextDecorationProperties(parent); + IElementNode child1 = CreateNewNode(parent, colorChild1, lineChild1, styleChild1); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary childStyles = child1.GetStyles(); + NUnit.Framework.Assert.AreEqual(colorChild1, childStyles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(lineChild1, childStyles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(styleChild1, childStyles.Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void ParentNoStyleAtAllDoesNotImpactChild() { + IElementNode parent = CreateNewNode(null, null, null, null); + String colorChild1 = "yellow"; + String lineChild1 = "line-under"; + String styleChild1 = "solid"; + TextDecorationApplierUtil.PropagateTextDecorationProperties(parent); + IElementNode child1 = CreateNewNode(parent, colorChild1, lineChild1, styleChild1); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary childStyles = child1.GetStyles(); + NUnit.Framework.Assert.AreEqual(colorChild1, childStyles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(lineChild1, childStyles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(styleChild1, childStyles.Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void ParentOnlyHasColorChildStylesShouldBeMerged() { + IElementNode parent = CreateNewNode(null, "red", null, null); + TextDecorationApplierUtil.PropagateTextDecorationProperties(parent); + String colorChild1 = "yellow"; + String lineChild1 = "line-under"; + String styleChild1 = "solid"; + IElementNode child1 = CreateNewNode(parent, colorChild1, lineChild1, styleChild1); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary childStyles = child1.GetStyles(); + // we only expect yellow because the line is ignored + String expectedColorChild = "yellow"; + String expectedLineChild = "line-under"; + String expectedStyleChild = "solid"; + NUnit.Framework.Assert.AreEqual(expectedColorChild, childStyles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(expectedLineChild, childStyles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleChild, childStyles.Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void ParentOnlyHasLineOnlyChildStylesShouldBeMerged() { + IElementNode parent = CreateNewNode(null, null, "line-through", null); + String colorChild1 = "yellow"; + String lineChild1 = "line-under"; + String styleChild1 = "solid"; + TextDecorationApplierUtil.PropagateTextDecorationProperties(parent); + IElementNode child1 = CreateNewNode(parent, colorChild1, lineChild1, styleChild1); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary childStyles = child1.GetStyles(); + String expectedColorChild = "currentcolor yellow"; + String expectedLineChild = "line-through line-under"; + String expectedStyleChild = "solid solid"; + NUnit.Framework.Assert.AreEqual(expectedColorChild, childStyles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(expectedLineChild, childStyles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleChild, childStyles.Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void ParentOnlyHasDecorationOnlyChildStylesShouldBeMerged() { + IElementNode parent = CreateNewNode(null, null, null, "solid"); + String colorChild1 = "yellow"; + String lineChild1 = "line-under"; + String styleChild1 = "solid"; + TextDecorationApplierUtil.PropagateTextDecorationProperties(parent); + IElementNode child1 = CreateNewNode(parent, colorChild1, lineChild1, styleChild1); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary childStyles = child1.GetStyles(); + //first is ignored because no line style is defined + String expectedColorChild = "yellow"; + String expectedLineChild = "line-under"; + String expectedStyleChild = "solid"; + NUnit.Framework.Assert.AreEqual(expectedColorChild, childStyles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(expectedLineChild, childStyles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleChild, childStyles.Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void TextDecorationShouldBeAppliedToChild() { + String colorParent = "red"; + String lineParent = "line-through"; + String styleParent = "solid"; + IElementNode parent = CreateNewNode(null, colorParent, lineParent, styleParent); + TextDecorationApplierUtil.PropagateTextDecorationProperties(parent); + String colorChild1 = "yellow"; + String lineChild1 = "line-under"; + String styleChild1 = "solid"; + IElementNode child1 = CreateNewNode(parent, colorChild1, lineChild1, styleChild1); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary childStyles = child1.GetStyles(); + String expectedColorChild = "red yellow"; + String expectedLineChild = "line-through line-under"; + String expectedStyleChild = "solid solid"; + NUnit.Framework.Assert.AreEqual(expectedColorChild, childStyles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(expectedLineChild, childStyles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleChild, childStyles.Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void TextDecorationShouldBeAppliedToChildWithoutDuplicates() { + String colorParent = "red"; + String lineParent = "line-through"; + String styleParent = "solid"; + IElementNode parent = CreateNewNode(null, colorParent, lineParent, styleParent); + IElementNode child1 = CreateNewNode(parent, colorParent, lineParent, styleParent); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary childStyles = child1.GetStyles(); + NUnit.Framework.Assert.AreEqual(colorParent, childStyles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(lineParent, childStyles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(styleParent, childStyles.Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void TextDecorationOneColor2StylesShouldBeAppliedToChild() { + String colorParent = "red"; + String lineParent = "line-through line-over"; + String styleParent = "solid"; + IElementNode parent = CreateNewNode(null, colorParent, lineParent, styleParent); + TextDecorationApplierUtil.PropagateTextDecorationProperties(parent); + String colorChild1 = "yellow"; + String lineChild1 = "line-under"; + String styleChild1 = "solid"; + IElementNode child1 = CreateNewNode(parent, colorChild1, lineChild1, styleChild1); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary childStyles = child1.GetStyles(); + String expectedColorChild = "red red yellow"; + String expectedLineChild = "line-through line-over line-under"; + String expectedStyleChild = "solid solid solid"; + NUnit.Framework.Assert.AreEqual(expectedColorChild, childStyles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(expectedLineChild, childStyles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleChild, childStyles.Get(CssConstants.TEXT_DECORATION_STYLE)); + } + + [NUnit.Framework.Test] + public virtual void TextDecorationShouldBeAppliedToChildAndSubChild() { + String colorParent = "red"; + String lineParent = "line-through"; + String styleParent = "solid"; + IElementNode parent = CreateNewNode(null, colorParent, lineParent, styleParent); + String colorChild1 = "yellow"; + String lineChild1 = "line-under"; + String styleChild1 = "solid"; + IElementNode child1 = CreateNewNode(parent, colorChild1, lineChild1, styleChild1); + parent.AddChild(child1); + String colorSubChild1 = "pink"; + String lineSubChild1 = "line-over"; + String styleSubChild1 = "solid"; + IElementNode subChild1 = CreateNewNode(child1, colorSubChild1, lineSubChild1, styleSubChild1); + child1.AddChild(subChild1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary child1Styles = child1.GetStyles(); + String expectedColorChild = "red yellow"; + String expectedLineChild = "line-through line-under"; + String expectedStyleChild = "solid solid"; + NUnit.Framework.Assert.AreEqual(expectedColorChild, child1Styles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(expectedLineChild, child1Styles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleChild, child1Styles.Get(CssConstants.TEXT_DECORATION_STYLE)); + TextDecorationApplierUtil.PropagateTextDecorationProperties(subChild1); + child1Styles = subChild1.GetStyles(); + String expectedColorSubChild = "red yellow pink"; + String expectedLineSubChild = "line-through line-under line-over"; + String expectedStyleSubChild = "solid solid solid"; + NUnit.Framework.Assert.AreEqual(expectedColorSubChild, child1Styles.Get(CssConstants.TEXT_DECORATION_COLOR + )); + NUnit.Framework.Assert.AreEqual(expectedLineSubChild, child1Styles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleSubChild, child1Styles.Get(CssConstants.TEXT_DECORATION_STYLE + )); + } + + [NUnit.Framework.Test] + public virtual void TextDecorationShouldBeAppliedToChildAndSubChildWhenSecondChildDoesntHaveAttributes() { + String colorParent = "red"; + String lineParent = "line-through"; + String styleParent = "solid"; + IElementNode parent = CreateNewNode(null, colorParent, lineParent, styleParent); + IElementNode child1 = CreateNewNode(parent, null, null, null); + parent.AddChild(child1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(child1); + IDictionary child1Styles = child1.GetStyles(); + String expectedColorChild = "red"; + String expectedLineChild = "line-through"; + String expectedStyleChild = "solid"; + NUnit.Framework.Assert.AreEqual(expectedColorChild, child1Styles.Get(CssConstants.TEXT_DECORATION_COLOR)); + NUnit.Framework.Assert.AreEqual(expectedLineChild, child1Styles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleChild, child1Styles.Get(CssConstants.TEXT_DECORATION_STYLE)); + String colorSubChild1 = "pink"; + String lineSubChild1 = "line-over"; + String styleSubChild1 = "solid"; + IElementNode subChild1 = CreateNewNode(child1, colorSubChild1, lineSubChild1, styleSubChild1); + child1.AddChild(subChild1); + TextDecorationApplierUtil.PropagateTextDecorationProperties(subChild1); + child1Styles = subChild1.GetStyles(); + String expectedColorSubChild = "red pink"; + String expectedLineSubChild = "line-through line-over"; + String expectedStyleSubChild = "solid solid"; + NUnit.Framework.Assert.AreEqual(expectedColorSubChild, child1Styles.Get(CssConstants.TEXT_DECORATION_COLOR + )); + NUnit.Framework.Assert.AreEqual(expectedLineSubChild, child1Styles.Get(CssConstants.TEXT_DECORATION_LINE)); + NUnit.Framework.Assert.AreEqual(expectedStyleSubChild, child1Styles.Get(CssConstants.TEXT_DECORATION_STYLE + )); + } + + internal class TextDecorationTestElementNode : IElementNode { + private readonly INode parent; + + internal TextDecorationTestElementNode(INode parent) { + this.parent = parent; + } + + public virtual String Name() { + return "testnode"; + } + + public virtual IAttributes GetAttributes() { + return null; + } + + public virtual String GetAttribute(String key) { + return null; + } + + public virtual IList> GetAdditionalHtmlStyles() { + return null; + } + + public virtual void AddAdditionalHtmlStyles(IDictionary styles) { + } + + public virtual String GetLang() { + return "en"; + } + + public virtual IList ChildNodes() { + return children; + } + + internal IList children = new List(); + + public virtual void AddChild(INode node) { + children.Add(node); + } + + public virtual INode ParentNode() { + return parent; + } + + public virtual void SetStyles(IDictionary stringStringMap) { + } + + internal Dictionary styles = new Dictionary(); + + public virtual IDictionary GetStyles() { + return styles; + } + } + } +} diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/MediaRuleIntegrationTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/MediaRuleIntegrationTest.cs index bf4844322..4399f584f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/MediaRuleIntegrationTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/MediaRuleIntegrationTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/MediaRuleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/MediaRuleTest.cs index 563349f64..4251f6c09 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/MediaRuleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/MediaRuleTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/HtmlPageMarginBoxImageSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/HtmlPageMarginBoxImageSizeTest.cs index 86eecafb5..3f7e5093e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/HtmlPageMarginBoxImageSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/HtmlPageMarginBoxImageSizeTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/PageMarginBoxIntegrationTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/PageMarginBoxIntegrationTest.cs index bd4e436c0..6e19a232d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/PageMarginBoxIntegrationTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/PageMarginBoxIntegrationTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/fix_dimension/PageMarginBoxFixDimensionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/fix_dimension/PageMarginBoxFixDimensionTest.cs index 380e4a796..ffb517e98 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/fix_dimension/PageMarginBoxFixDimensionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/fix_dimension/PageMarginBoxFixDimensionTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/max_dimension/PageMarginBoxMaxDimensionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/max_dimension/PageMarginBoxMaxDimensionTest.cs index 553850253..e58df3553 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/max_dimension/PageMarginBoxMaxDimensionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/max_dimension/PageMarginBoxMaxDimensionTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/min_dimension/PageMarginBoxMinDimensionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/min_dimension/PageMarginBoxMinDimensionTest.cs index df97f98fc..09a553302 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/min_dimension/PageMarginBoxMinDimensionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/media/page/min_dimension/PageMarginBoxMinDimensionTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/CssContentPropertyResolverIntegrationTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/CssContentPropertyResolverIntegrationTest.cs index c65b236ef..14cfa647d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/CssContentPropertyResolverIntegrationTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/CssContentPropertyResolverIntegrationTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/CssContentPropertyResolverTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/CssContentPropertyResolverTest.cs index 1e12e6ffe..0665dfcc7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/CssContentPropertyResolverTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/CssContentPropertyResolverTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/HtmlStylesToCssConverterIntegrationTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/HtmlStylesToCssConverterIntegrationTest.cs index 6a72c7fbe..f1a6b22cb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/HtmlStylesToCssConverterIntegrationTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/HtmlStylesToCssConverterIntegrationTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/HtmlStylesToCssConverterTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/HtmlStylesToCssConverterTest.cs new file mode 100644 index 000000000..1d05fa960 --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/HtmlStylesToCssConverterTest.cs @@ -0,0 +1,80 @@ +/* +This file is part of the iText (R) project. +Copyright (c) 1998-2023 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 . +*/ +using System; +using System.Collections.Generic; +using iText.Html2pdf.Html; +using iText.StyledXmlParser.Css; +using iText.StyledXmlParser.Node.Impl.Jsoup.Node; +using iText.Test; + +namespace iText.Html2pdf.Css.Resolve { + [NUnit.Framework.Category("UnitTest")] + public class HtmlStylesToCssConverterTest : ExtendedITextTest { + [NUnit.Framework.Test] + public virtual void TrimSemicolonsForWidthAttributeTest() { + iText.StyledXmlParser.Jsoup.Nodes.Element element = new iText.StyledXmlParser.Jsoup.Nodes.Element(iText.StyledXmlParser.Jsoup.Parser.Tag + .ValueOf(TagConstants.IMG), ""); + element.Attr("width", "53%;;;"); + JsoupElementNode node = new JsoupElementNode(element); + IList cssDeclarations = HtmlStylesToCssConverter.Convert(node); + AssertCssDeclarationListWithOneElement(cssDeclarations, "width", "53%"); + } + + [NUnit.Framework.Test] + public virtual void WithoutSemicolonsWidthAttributeTest() { + iText.StyledXmlParser.Jsoup.Nodes.Element element = new iText.StyledXmlParser.Jsoup.Nodes.Element(iText.StyledXmlParser.Jsoup.Parser.Tag + .ValueOf(TagConstants.IMG), ""); + element.Attr("width", "52%"); + JsoupElementNode node = new JsoupElementNode(element); + IList cssDeclarations = HtmlStylesToCssConverter.Convert(node); + AssertCssDeclarationListWithOneElement(cssDeclarations, "width", "52%"); + } + + [NUnit.Framework.Test] + public virtual void TrimSemicolonsForHeightAttributeTest() { + iText.StyledXmlParser.Jsoup.Nodes.Element element = new iText.StyledXmlParser.Jsoup.Nodes.Element(iText.StyledXmlParser.Jsoup.Parser.Tag + .ValueOf(TagConstants.IMG), ""); + element.Attr("height", "51%;"); + JsoupElementNode node = new JsoupElementNode(element); + IList cssDeclarations = HtmlStylesToCssConverter.Convert(node); + AssertCssDeclarationListWithOneElement(cssDeclarations, "height", "51%"); + } + + [NUnit.Framework.Test] + public virtual void WithoutSemicolonsHeightAttributeTest() { + iText.StyledXmlParser.Jsoup.Nodes.Element element = new iText.StyledXmlParser.Jsoup.Nodes.Element(iText.StyledXmlParser.Jsoup.Parser.Tag + .ValueOf(TagConstants.IMG), ""); + element.Attr("height", "50%"); + JsoupElementNode node = new JsoupElementNode(element); + IList cssDeclarations = HtmlStylesToCssConverter.Convert(node); + AssertCssDeclarationListWithOneElement(cssDeclarations, "height", "50%"); + } + + private static void AssertCssDeclarationListWithOneElement(IList cssDeclarations, String prop + , String exp) { + NUnit.Framework.Assert.AreEqual(1, cssDeclarations.Count); + NUnit.Framework.Assert.AreEqual(prop, cssDeclarations[0].GetProperty()); + NUnit.Framework.Assert.AreEqual(exp, cssDeclarations[0].GetExpression()); + } + } +} diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/func/counter/CssCounterManagerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/func/counter/CssCounterManagerTest.cs index 66c3e719e..ffa384e09 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/func/counter/CssCounterManagerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/func/counter/CssCounterManagerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/func/counter/PageTargetCountElementNodeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/func/counter/PageTargetCountElementNodeTest.cs index ae6af5ffa..12349525f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/func/counter/PageTargetCountElementNodeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/resolve/func/counter/PageTargetCountElementNodeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/selector/item/ConstantApplyingPseudoClassesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/selector/item/ConstantApplyingPseudoClassesTest.cs index 2a0712d06..97fae1d1c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/selector/item/ConstantApplyingPseudoClassesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/selector/item/ConstantApplyingPseudoClassesTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/selector/item/NonStandardNodesMatchingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/selector/item/NonStandardNodesMatchingTest.cs index 47863ef06..57bb5f4d9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/selector/item/NonStandardNodesMatchingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/selector/item/NonStandardNodesMatchingTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/util/CssStyleSheetAnalyzerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/util/CssStyleSheetAnalyzerTest.cs index 20fc8588e..5bc4b4a34 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/util/CssStyleSheetAnalyzerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/util/CssStyleSheetAnalyzerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/W3CCssTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/W3CCssTest.cs index f5d3dab9f..2a6525db2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/W3CCssTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/W3CCssTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background001Test.cs index d75cdf3ac..39a6533e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background002Test.cs index d8fe7794b..19e26e1d0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background003Test.cs index 7361eb65b..df7196541 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background004Test.cs index 7f4fe7fab..17d61bb94 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background005Test.cs index 4396724ca..50d7f0912 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background006Test.cs index 7fd6db664..7b3a813f3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background006aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background006aTest.cs index 8c4be4ffe..c58b96994 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background006aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background006aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background007Test.cs index bbd32b802..c4bd7c91f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background008Test.cs index 56cd5c464..660eb144f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background009Test.cs index d0d8f065b..2de13a04f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background010Test.cs index 7108d76a7..7248de4a8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background011Test.cs index b31267d1b..757bde81d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background011Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background013Test.cs index 181ceb99a..2c2d037d1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background014Test.cs index 710e77ffe..926190af2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background015Test.cs index c796b8f4c..d54558b0a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background016Test.cs index aaaba48c9..c546175d4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background017Test.cs index 77bc77802..4a4285388 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background018Test.cs index 082686ffa..642a203a6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background020Test.cs index 33d372bb2..4781b6948 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background021Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background021Test.cs index 4db57e90c..0b9badb78 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background021Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background021Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background022Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background022Test.cs index f6b737e08..be19ac5e1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background022Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background022Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background023Test.cs index 3087bae58..9e8549c5d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background023Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background024Test.cs index 746735b43..fe4bfe447 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background024Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background025Test.cs index d45cb46c3..4e8261b20 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background025Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background026Test.cs index 123d6eaf8..b9b3ec04d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background026Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background028Test.cs index 5c949fe75..f27a79f04 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background028Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background029Test.cs index 06d62d743..de12d8f1b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background029Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background030Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background030Test.cs index ed81a80fe..29f806227 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background030Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background030Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background031Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background031Test.cs index 3583ed21d..f8d741fca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background031Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background031Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background033Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background033Test.cs index 963870cdf..8a9be2bd1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background033Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background033Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background034Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background034Test.cs index 492304c5b..497e8f422 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background034Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background034Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background035Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background035Test.cs index fdc724c31..97af56dd4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background035Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background035Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background036Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background036Test.cs index a163850fa..2fa4f3175 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background036Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background036Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background037Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background037Test.cs index 2305d0bdb..608f17508 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background037Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background037Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background038Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background038Test.cs index 331789fcc..432e7b197 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background038Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background038Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background040Test.cs index 99cc4abd9..64463c078 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background040Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background041Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background041Test.cs index e9e013824..961a3d66c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background041Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background041Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background043Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background043Test.cs index 6aa518bf6..2330f9a1a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background043Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background043Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background047Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background047Test.cs index 9c862e945..b7cee2601 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background047Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background047Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background048Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background048Test.cs index 33fb88b4e..a1a133c18 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background048Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background048Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background050Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background050Test.cs index 13ff41851..1336f1ff1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background050Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background050Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background051Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background051Test.cs index 038e5961e..f73ad6803 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background051Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background051Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background052Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background052Test.cs index 5cf1dce4b..eb4da5413 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background052Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background052Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background053Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background053Test.cs index 7151b13ca..5e8fa72dd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background053Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background053Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background055Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background055Test.cs index d7b6c6a63..792fea2bc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background055Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background055Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background056Test.cs index cabad660b..ca2770ac3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background056Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background058Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background058Test.cs index 4c94abeb2..ca8253ccf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background058Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background058Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background059Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background059Test.cs index 386c66f67..795b2000e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background059Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background059Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background060Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background060Test.cs index df9de58b9..81324b96e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background060Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background060Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background061Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background061Test.cs index 4d712c923..e5e9a0b8f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background061Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background061Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background063Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background063Test.cs index 944d02be8..1ab3dd80d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background063Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background063Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background064Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background064Test.cs index 7f668d9b3..105feb3d6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background064Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background064Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background068Test.cs index 9d548863f..fc4d31167 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background068Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background070Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background070Test.cs index 7e13442f3..e73d34191 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background070Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background070Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background071Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background071Test.cs index 90befc353..6703fba06 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background071Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background071Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background073Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background073Test.cs index 4b2cef969..c4a56cadc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background073Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background073Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background074Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background074Test.cs index f3e9de358..18413c7ee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background074Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background074Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background075Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background075Test.cs index 196d9ac3c..6f29b588f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background075Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background075Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background076Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background076Test.cs index 3ee482770..5d07ae0da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background076Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background076Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background077Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background077Test.cs index ca4513ce5..183a7efdb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background077Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background077Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background078Test.cs index 27a3387ee..23affff8d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background078Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background080Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background080Test.cs index c3456c3a5..b8edded2c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background080Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background080Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background081Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background081Test.cs index d83270c4a..6f15a93ba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background081Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background081Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background082Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background082Test.cs index 9832a2ed6..fc0758c9a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background082Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background082Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background083Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background083Test.cs index 67ddcc46e..2f0b91cd9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background083Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background083Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background085Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background085Test.cs index 80adfe8c2..4a1e79367 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background085Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background085Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background087Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background087Test.cs index a09b6513f..628d46c61 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background087Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background087Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background090Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background090Test.cs index 3053fc616..95ce10a39 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background090Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background090Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background093Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background093Test.cs index 136d13d67..d1a7c1ba5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background093Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background093Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background095Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background095Test.cs index 449697245..2fe8815c4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background095Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background095Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background096Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background096Test.cs index dca84519e..5ad8f8f7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background096Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background096Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background097Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background097Test.cs index 290490ca7..2947dba1d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background097Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background097Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background103Test.cs index 6bf36c40f..96d990df4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background103Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background104Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background104Test.cs index a38760185..770aac2ec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background104Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background104Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background106Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background106Test.cs index be5e974d1..8da555388 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background106Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background106Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background107Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background107Test.cs index 3e62fb90f..977938865 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background107Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background107Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background109Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background109Test.cs index 6de3a79b6..c6177f38b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background109Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background109Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background111Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background111Test.cs index f0d0d50fa..82aeec95b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background111Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background111Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background114Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background114Test.cs index 9701b53d2..1806b1071 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background114Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background114Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background117Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background117Test.cs index 82412daeb..665f27972 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background117Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background117Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background120Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background120Test.cs index 97bc32739..ebd9dd2e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background120Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background120Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background128Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background128Test.cs index 27878c7ee..260c829f3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background128Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background128Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background130Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background130Test.cs index 057c96334..4ae67e118 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background130Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background130Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background135Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background135Test.cs index eefab9d3b..7408de63c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background135Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background135Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background137Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background137Test.cs index a881f1bbd..e29f10a4b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background137Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background137Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background138Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background138Test.cs index 4cd900745..0bf2c9368 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background138Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background138Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background139Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background139Test.cs index 60fa40cd9..65e655077 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background139Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background139Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background141Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background141Test.cs index e772a7bfe..e8d3845bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background141Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background141Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background144Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background144Test.cs index 7c2fd1a51..5b8d0eeaa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background144Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background144Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background147Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background147Test.cs index c48327c0f..8a52e9564 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background147Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background147Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background150Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background150Test.cs index 0fc0a0572..d3698ff9e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background150Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background150Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background152Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background152Test.cs index f777a137d..48f5338a0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background152Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background152Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background153Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background153Test.cs index 759c29c88..9842023af 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background153Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background153Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background154Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background154Test.cs index 8e97d6737..8768d1141 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background154Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background154Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background156Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background156Test.cs index c483af4b4..d20e5a9e2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background156Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background156Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background161Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background161Test.cs index b1e9a8dc9..a3da537e7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background161Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background161Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background163Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background163Test.cs index 697126b77..49d866279 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background163Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background163Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background182Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background182Test.cs index da26aa705..ce40cb297 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background182Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background182Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background184Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background184Test.cs index 83930f9ae..7b0a1e380 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background184Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background184Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background188Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background188Test.cs index 2622b2ea1..38752e8f8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background188Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background188Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background190Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background190Test.cs index 8c0990a07..a1d76751b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background190Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background190Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background194Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background194Test.cs index 7197365f3..6853d10ae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background194Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background194Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background196Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background196Test.cs index 77a04cc58..8b243e6a7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background196Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background196Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background326Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background326Test.cs index 96619cacd..2abab8aaf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background326Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background326Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background327Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background327Test.cs index 76c961690..bf4baa226 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background327Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background327Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background328Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background328Test.cs index d46408a3e..f8fa816ec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background328Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background328Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background329Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background329Test.cs index 2595ca54f..6c0d1502d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background329Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background329Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background330Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background330Test.cs index bba23ce23..bc540d107 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background330Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/Background330Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo001Test.cs index 82a85ed87..223faf952 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo002Test.cs index abdbc0363..999ba46fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo003Test.cs index 601cb7154..cb6207066 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo004Test.cs index 121176493..fc37f21a6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo005Test.cs index 274cb2c89..d286aec8b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo006Test.cs index 1ab31b942..a81948f47 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo007Test.cs index e6222b340..8301e1b1c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo008Test.cs index ec769da0a..0aa641e23 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo009Test.cs index af932fa87..0d1d34294 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo010Test.cs index a57dfa6af..1613b8f3c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo012Test.cs index 388834186..5cca5fe05 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo013Test.cs index 69430463f..758a9c2b1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo014Test.cs index fc6ad257f..cef8465fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo015Test.cs index 007d8494b..0b7f03202 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAppliesTo015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachment009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachment009Test.cs index 42f7aa291..9891e8e4f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachment009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachment009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo001Test.cs index 8e4e63128..656e2f01e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo002Test.cs index 2a421bc31..36c8068b8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo003Test.cs index 5a82725dd..7914835c8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo004Test.cs index 4486a7d7a..3fb5ba797 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo005Test.cs index db4e3f7d4..8147ed908 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo006Test.cs index d240d3800..f4d12b22c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo007Test.cs index 1e1cb7ccb..51ec5568e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo008Test.cs index 28e1f6190..6ec1eae33 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo009Test.cs index 7b4284e45..0b5003bb8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo010Test.cs index b7f4afc7f..e0fb500e9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo012Test.cs index d9b28344a..3a26bf9c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo013Test.cs index ab43b7997..b6f9504ab 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo014Test.cs index 9d0c4c9ec..77e08ab7d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo015Test.cs index 619b1fc79..f3dc50cb7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundAttachmentAppliesTo015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos204Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos204Test.cs index 0476ada81..5f687099c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos204Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos204Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos206Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos206Test.cs index 73afef4ac..6af533c74 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos206Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos206Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos208Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos208Test.cs index 0bc603277..3d04ead16 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos208Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBgPos208Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody001Test.cs index 80750bc21..61ad9a406 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody002Test.cs index 6a0c34e9d..513e187b2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody003Test.cs index 3f3216d7d..ed4dd631d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundBody003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor001Test.cs index e75e5a0fe..29f483b1a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor002Test.cs index e613d2569..87dd48927 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor003Test.cs index ca5f0c90b..0c54beeb3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor004Test.cs index c70921562..544438449 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor005Test.cs index db1211716..13ad9da01 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor006Test.cs index 733e74118..ffa39d511 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor007Test.cs index 293629e19..9365bf83e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor008Test.cs index ad2420a20..ceb8d935b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor009Test.cs index 55d38625f..b8950a0d2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor010Test.cs index e998cd070..b04571055 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor011Test.cs index 605fed4f7..0dff32e0c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor011Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor012Test.cs index 60b6a8a90..0e2d84664 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor013Test.cs index dae954e38..2d81b3733 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor014Test.cs index bd2174153..29d0cdc0a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor015Test.cs index ce6039a05..2981a6473 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor016Test.cs index 068451882..e79b35065 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor017Test.cs index 6bc2ae4ef..a607d468a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor018Test.cs index e46e5ab3a..3a2a34dc7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor019Test.cs index 4a7b88bf6..3579463ae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor020Test.cs index b210e993f..986bd3771 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor021Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor021Test.cs index e47b07899..264d3aa5d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor021Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor021Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor022Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor022Test.cs index 5aa3df3e2..4b9dfc864 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor022Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor022Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor023Test.cs index 817c66e17..cc9ed81f5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor023Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor024Test.cs index b44afc747..3c8ae9dc6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor024Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor025Test.cs index 1c706d8ca..708401c77 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor025Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor026Test.cs index fe21cee0c..5affe6b3b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor026Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor027Test.cs index 9c9b8b469..8d7610f3c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor027Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor028Test.cs index 3f6bbf4ad..1fce58bbd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor028Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor029Test.cs index 0503e043a..efa06b61f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor029Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor030Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor030Test.cs index 92aa59ac1..ed092a409 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor030Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor030Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor031Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor031Test.cs index 1e9a1e4a4..9670debb5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor031Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor031Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor032Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor032Test.cs index 57ede241e..b97922821 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor032Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor032Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor033Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor033Test.cs index 7b5e0379b..d9c9038a5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor033Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor033Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor034Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor034Test.cs index 3e528ea17..a605640ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor034Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor034Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor035Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor035Test.cs index f62fcafce..64f27be00 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor035Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor035Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor036Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor036Test.cs index a3229830f..99c4a25d6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor036Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor036Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor037Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor037Test.cs index 4b83a8765..eddf490c5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor037Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor037Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor038Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor038Test.cs index 26ef0d091..0f2a58d2c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor038Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor038Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor039Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor039Test.cs index 4c50d0551..e9005a728 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor039Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor039Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor040Test.cs index 43560d76c..4907130fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor040Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor041Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor041Test.cs index 3b5530a38..85b3f6437 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor041Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor041Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor042Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor042Test.cs index a8eeebd85..31a8e61d5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor042Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor042Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor043Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor043Test.cs index 4657961b9..68f990015 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor043Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor043Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor044Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor044Test.cs index cec66f321..43039949a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor044Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor044Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor045Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor045Test.cs index 31c9eb036..2eaa0c183 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor045Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor045Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor046Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor046Test.cs index 05e2253ef..91170e3ba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor046Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor046Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor047Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor047Test.cs index b87123452..1089396f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor047Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor047Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor048Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor048Test.cs index 6bda847e2..15a7653c8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor048Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor048Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor050Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor050Test.cs index 0a95bded8..e69ff9f71 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor050Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor050Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor051Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor051Test.cs index e03c28af6..22d0cb1fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor051Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor051Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor055Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor055Test.cs index 8ef9351d5..50b695114 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor055Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor055Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor056Test.cs index e0ae866da..095fc5c94 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor056Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor057Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor057Test.cs index b133b4a8c..6b5fefb0c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor057Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor057Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor058Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor058Test.cs index 96af1671a..336448832 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor058Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor058Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor059Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor059Test.cs index d39dc31dd..780ddbcc3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor059Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor059Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor060Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor060Test.cs index 5dcbfc808..e81ecd819 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor060Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor060Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor061Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor061Test.cs index 89224d0bf..7360cf56c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor061Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor061Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor062Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor062Test.cs index a0edb2773..6c6b2973c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor062Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor062Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor063Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor063Test.cs index 3da63073e..4d58c7dc0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor063Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor063Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor064Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor064Test.cs index e1d56a302..8dbe73bed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor064Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor064Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor065Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor065Test.cs index 4ac45b27d..4c5d60d11 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor065Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor065Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor066Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor066Test.cs index e830fe809..880db5e11 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor066Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor066Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor067Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor067Test.cs index d6d5a6f11..bb4ef4185 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor067Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor067Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor068Test.cs index 69653082b..ca2420ffe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor068Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor069Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor069Test.cs index ea96a6f05..abc588fd7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor069Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor069Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor071Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor071Test.cs index a6b78fd9d..1c5276633 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor071Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor071Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor072Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor072Test.cs index 635e1f507..196167803 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor072Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor072Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor076Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor076Test.cs index e29ce9391..02df0f63c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor076Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor076Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor077Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor077Test.cs index 394aaf15b..cbcb5f51f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor077Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor077Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor078Test.cs index b5c2832ad..25b224913 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor078Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor079Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor079Test.cs index 3835748e5..88f618de7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor079Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor079Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor080Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor080Test.cs index 59ad9525d..cee6577b2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor080Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor080Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor081Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor081Test.cs index 49586b017..ed3411123 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor081Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor081Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor082Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor082Test.cs index 3e23079ee..cacf47de9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor082Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor082Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor083Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor083Test.cs index ca80a5113..78f17aa15 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor083Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor083Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor084Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor084Test.cs index 48a9076ac..4701d33ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor084Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor084Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor085Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor085Test.cs index 6af2dc9f6..4f9fb5dcb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor085Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor085Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor086Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor086Test.cs index 83011fb88..66af70f13 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor086Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor086Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor087Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor087Test.cs index 896fa2b38..b948adf40 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor087Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor087Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor088Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor088Test.cs index b2f3945f8..ae96e4a6b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor088Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor088Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor089Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor089Test.cs index e685852c5..5e8230243 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor089Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor089Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor091Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor091Test.cs index 9098aa084..0da615aff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor091Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor091Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor092Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor092Test.cs index a6161437b..1b7e7f34e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor092Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor092Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor096Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor096Test.cs index 70a15bc2b..661ae44d1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor096Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor096Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor097Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor097Test.cs index 2abfdff56..741583b87 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor097Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor097Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor098Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor098Test.cs index c37737be6..c61bfc08f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor098Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor098Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor099Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor099Test.cs index a297a8d2e..50d5ac4a6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor099Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor099Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor100Test.cs index 6e884b29a..165ac316c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor100Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor101Test.cs index 466cd8d35..cbd774330 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor101Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor102Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor102Test.cs index f305f3533..bcda04f5d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor102Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor102Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor103Test.cs index 1c2723ad4..ed6f69ec6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor103Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor104Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor104Test.cs index 4ffebafa2..c298c5f4c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor104Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor104Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor105Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor105Test.cs index 30aede152..db448e8fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor105Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor105Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor106Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor106Test.cs index 965da3161..6adbb4427 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor106Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor106Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor107Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor107Test.cs index ca8b2bd2a..7799e05f2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor107Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor107Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor108Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor108Test.cs index 8d157c9a1..645065440 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor108Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor108Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor109Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor109Test.cs index 838b5d2fd..3b72d378b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor109Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor109Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor111Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor111Test.cs index becd17d31..5b6e7de87 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor111Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor111Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor112Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor112Test.cs index 63fecad38..3ce5c4eb8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor112Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor112Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor116Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor116Test.cs index 5df4a2f4e..6a3ebb93c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor116Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor116Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor117Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor117Test.cs index 5425dc623..18211d500 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor117Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor117Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor118Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor118Test.cs index 3e2d12b4b..fabd54544 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor118Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor118Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor119Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor119Test.cs index ab5deb2ea..47e48bbb4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor119Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor119Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor120Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor120Test.cs index b6e4f4708..2e108c601 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor120Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor120Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor121Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor121Test.cs index 132a6a8e8..6187f668d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor121Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor121Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor122Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor122Test.cs index 1485bec35..62e554edd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor122Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor122Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor123Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor123Test.cs index 11f636527..21d12f96b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor123Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor123Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor124Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor124Test.cs index 902c5f71b..7bc4dce79 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor124Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor124Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor125Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor125Test.cs index f54d3a449..fbfea9566 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor125Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor125Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor126Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor126Test.cs index 455d33dc1..342a2a8fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor126Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor126Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor127Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor127Test.cs index 0b012b959..361525703 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor127Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor127Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor128Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor128Test.cs index 7ebeb9b18..32660201e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor128Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor128Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor129Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor129Test.cs index 1f901128d..acc681e59 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor129Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor129Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor130Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor130Test.cs index 6af5cbd36..79af7767f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor130Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor130Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor131Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor131Test.cs index a2394627e..4263b20d6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor131Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor131Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor132Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor132Test.cs index 64b9c1603..6d97015dd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor132Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor132Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor133Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor133Test.cs index 120d3d5e7..2b1b22a24 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor133Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor133Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor134Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor134Test.cs index 39b5f7826..3963d3e7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor134Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor134Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor135Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor135Test.cs index 3fc272a00..69068f935 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor135Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor135Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor136Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor136Test.cs index 87314b829..f0e0d6c27 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor136Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor136Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor137Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor137Test.cs index 2140987c1..03602432d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor137Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor137Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor138Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor138Test.cs index 62c20199f..4834a2967 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor138Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor138Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor139Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor139Test.cs index 957f624d3..a9564a6d1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor139Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor139Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor140Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor140Test.cs index aebd266b9..63ade1ae8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor140Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor140Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor141Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor141Test.cs index bafab8318..6831f66a1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor141Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor141Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor142Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor142Test.cs index f763ad2e3..d966182c8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor142Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor142Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor143Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor143Test.cs index 2c39f6ef0..da9f65608 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor143Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor143Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor144Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor144Test.cs index badd88990..953eb9403 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor144Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor144Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor145Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor145Test.cs index 84f975c67..d018d86fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor145Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor145Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor174Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor174Test.cs index e476cf9ca..6f80b35a5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor174Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor174Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor175Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor175Test.cs index 216185722..cb1b74a70 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor175Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColor175Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo001Test.cs index 07e73a96b..bddf3c515 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo002Test.cs index 069bbc5ad..7afd610d5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo003Test.cs index e56409511..0d7cb0374 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo004Test.cs index ea3d50409..c2cced7bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo005Test.cs index 33c4ff791..894b23782 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo006Test.cs index aa61e12fe..32dee8691 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo007Test.cs index c18dd5dcb..af1e8c49f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo008Test.cs index c5fb9e9a2..7d4f4f29a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo009Test.cs index bdaca0943..9ac3b1f0a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo010Test.cs index 5e34cf334..ca581182f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo012Test.cs index a925c5248..6c5eb9be8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo013Test.cs index db93acb82..436b61cb6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo014Test.cs index c798efcd3..0e0bbdd6e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo015Test.cs index 129847792..d9e71c812 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundColorAppliesTo015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover001Test.cs index a6daf6262..a388cfe30 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover002Test.cs index 30c0ccf99..63dc5222f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover003Test.cs index dabfba90e..4be036af4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover004Test.cs index 9667d4c28..84cb1d6e6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundCover004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundHtmlBody001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundHtmlBody001Test.cs index 01765dd86..3b6fa72ad 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundHtmlBody001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundHtmlBody001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIframes001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIframes001Test.cs index e222e2fad..b2af3362b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIframes001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIframes001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage001Test.cs index 5bd0ea369..c0626e614 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage002Test.cs index f47f297d6..345bffe2e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage003Test.cs index 7d4659297..f481816fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage005Test.cs index f46d2569e..78df03cf0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImage005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo001Test.cs index a164a6818..a427e5119 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo002Test.cs index 791f35ad3..7dfb0fd2f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo003Test.cs index fd3a6badd..b955aecb6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo004Test.cs index 10b00acb9..bdeea5f68 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo005Test.cs index 23cc507c0..771f3b4d5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo006Test.cs index dd9d0f130..9f265e359 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo007Test.cs index dc45920f2..528ebf9f5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo008Test.cs index b2f931c98..017789df0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo009Test.cs index 64c052189..3056df541 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo010Test.cs index 5bb61f540..edafd2874 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo012Test.cs index 14776ccce..7bdd6f62d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo013Test.cs index 5ad4ffdc5..0e8687ab1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo014Test.cs index fb5888052..114ede4d0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo015Test.cs index 539172abb..277791873 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageAppliesTo015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover001Test.cs index 37aaccb30..8f09ec755 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover002Test.cs index a35e40289..f7fbcb1ba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover003Test.cs index e7ba7520f..a59de09a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover004Test.cs index 0d8009b4e..5f4313bff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCover004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCoverAttachment001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCoverAttachment001Test.cs index d20a293a7..1508575d3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCoverAttachment001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageCoverAttachment001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageTransparency001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageTransparency001Test.cs index bfd8cd2d1..0d23a9e29 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageTransparency001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundImageTransparency001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic001Test.cs index 8c1cc7aa0..d2192d2e6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic002Test.cs index 17a961361..0032a5c27 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic003Test.cs index c4b2e82f8..54da444eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic004Test.cs index dfbf11276..c8c64748d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic005Test.cs index 309af6e2a..57a999ecf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic006Test.cs index 8be9b1c44..c67d9b7b6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic007Test.cs index b0d38d1f2..78ff54925 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic008Test.cs index eab9f246f..166c54adf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic009Test.cs index 6ee41681f..1ba174d1d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic010Test.cs index 5833d2cfd..58421bdd1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundIntrinsic010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition004Test.cs index 200511afd..b2845dcab 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition005Test.cs index 8099eb27c..3c806f11e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition006Test.cs index b397d4a97..13a855878 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition007Test.cs index d632629d6..b69fa8ad4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition008Test.cs index d7ade034f..61c91c344 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition016Test.cs index 1ea20b8a6..6ebbfaa8d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition017Test.cs index 265c7d7f4..73bfc29f5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition018Test.cs index f96888c1e..c885578ca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition019Test.cs index 545fcf5a0..45510eded 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition020Test.cs index d8cb173a9..708743540 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition028Test.cs index 68b948488..459c86eef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition028Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition029Test.cs index 6b11ffaf1..612148209 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition029Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition030Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition030Test.cs index 157ab06f5..3bc08d64c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition030Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition030Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition031Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition031Test.cs index 65cb704ad..651d30ba9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition031Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition031Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition032Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition032Test.cs index f39e97f8e..8f5c69350 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition032Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition032Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition040Test.cs index 0ad12a671..3e043aaf3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition040Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition041Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition041Test.cs index 9a9399e21..e6ba6f500 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition041Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition041Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition042Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition042Test.cs index 4f3a4dcc9..bee863d55 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition042Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition042Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition043Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition043Test.cs index 185a8106d..d761903e9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition043Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition043Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition044Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition044Test.cs index b1a728863..570003ddc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition044Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition044Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition052Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition052Test.cs index 7882e48e4..9b6f87123 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition052Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition052Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition053Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition053Test.cs index 90fbb9b2f..88bcbc178 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition053Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition053Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition054Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition054Test.cs index 23e41c9f1..15f06b7cf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition054Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition054Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition055Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition055Test.cs index f25375f02..0b1e63521 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition055Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition055Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition056Test.cs index e1e5d36f5..d3c7db459 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition056Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition064Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition064Test.cs index f320adb50..65abd6f07 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition064Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition064Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition065Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition065Test.cs index 5e2efb427..f4b45752e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition065Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition065Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition066Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition066Test.cs index 0bd446e9a..868d2f8a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition066Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition066Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition067Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition067Test.cs index 91b168c26..b7ba54fcf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition067Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition067Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition068Test.cs index a99b1635e..6d45e2e92 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition068Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition076Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition076Test.cs index 06deb0ff1..aaedde76c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition076Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition076Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition077Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition077Test.cs index 2cee2342f..963aa3d4b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition077Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition077Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition078Test.cs index cb02e25ae..e61aa482b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition078Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition088Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition088Test.cs index f8dbd6027..2f8ac9b24 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition088Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition088Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition089Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition089Test.cs index 60db3a9f2..cb92e0a99 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition089Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition089Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition090Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition090Test.cs index 5e50c32c4..d4673c81a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition090Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition090Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition100Test.cs index 0eb2d16c9..753ea1cfa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition100Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition101Test.cs index 64204391e..79a027433 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition101Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition102Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition102Test.cs index cebb0d3d1..899cfc907 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition102Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition102Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition103Test.cs index 5327a26a0..82fbd5c71 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition103Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition104Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition104Test.cs index 9fc1811b7..f36b23cff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition104Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition104Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition109Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition109Test.cs index ebf90da5c..52d7b6251 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition109Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition109Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition110Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition110Test.cs index 6ebf1910f..3f5ccdbd1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition110Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition110Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition111Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition111Test.cs index f39b5911c..81263749f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition111Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition111Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition112Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition112Test.cs index aef445e5e..95ccc81e7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition112Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition112Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition113Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition113Test.cs index be1704f54..1608c27c3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition113Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition113Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition114Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition114Test.cs index 829588e12..f36d4a61a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition114Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition114Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition115Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition115Test.cs index 1324d6a6d..194ca8ad8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition115Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition115Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition116Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition116Test.cs index 1de7398db..b6b4db238 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition116Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition116Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition117Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition117Test.cs index aceff17f1..7506e1cb6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition117Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition117Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition118Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition118Test.cs index 729603151..f3570bc28 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition118Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition118Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition119Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition119Test.cs index 1d07eff2b..ffc1ce57f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition119Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition119Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition120Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition120Test.cs index 49e5db8b2..e40c7b1c8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition120Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition120Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition121Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition121Test.cs index cf4e285ce..300bb3a6d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition121Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition121Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition122Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition122Test.cs index 7b5fdca4b..a7514c27b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition122Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition122Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition123Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition123Test.cs index 9ff27407c..bbdf220f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition123Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition123Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition124Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition124Test.cs index 74ae4357c..5800fd43d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition124Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition124Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition125Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition125Test.cs index fad8a13f6..3e3632af4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition125Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition125Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition126Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition126Test.cs index cc31b86f1..3ae1a9f21 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition126Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition126Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition127Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition127Test.cs index faafdafe7..2e879cbb5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition127Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition127Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition128Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition128Test.cs index 825b42223..2a2d37d1c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition128Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition128Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition129Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition129Test.cs index 1bc8cbee2..3c493abab 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition129Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition129Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition130Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition130Test.cs index fc54320d5..39443f12b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition130Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition130Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition131Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition131Test.cs index 670a96713..3f57f5f0d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition131Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition131Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition132Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition132Test.cs index a95cae9fc..9ca46e206 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition132Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition132Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition133Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition133Test.cs index d9838c0c0..872d6ffa6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition133Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition133Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition134Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition134Test.cs index 900ce78f0..6eda8c6f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition134Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition134Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition135Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition135Test.cs index dd8b9b0a6..f7b973d46 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition135Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition135Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition136Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition136Test.cs index 9d1152fb7..5ecbb0c6f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition136Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition136Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition137Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition137Test.cs index 6a6b25b47..d92d45609 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition137Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition137Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition138Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition138Test.cs index 728765b98..314c6c6e6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition138Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition138Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition139Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition139Test.cs index 2482627fa..4ceddd47c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition139Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition139Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition140Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition140Test.cs index 6e9547757..052c7d468 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition140Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition140Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition141Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition141Test.cs index 17f6b9748..b63bf3e7a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition141Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition141Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition142Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition142Test.cs index ee6ff6ac9..1c02828c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition142Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition142Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition143Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition143Test.cs index d8ff1b0c8..12021d3f8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition143Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition143Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition144Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition144Test.cs index a44ca2591..1ade70d05 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition144Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition144Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition145Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition145Test.cs index c9c19fa00..68b4672e6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition145Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition145Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition146Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition146Test.cs index 8a79f76be..f28e0a563 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition146Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition146Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition147Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition147Test.cs index 340df077c..f2723d5f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition147Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition147Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition148Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition148Test.cs index 1101e14e5..dc17d333d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition148Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition148Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition149Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition149Test.cs index 0d1fa9e6b..5258abdae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition149Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition149Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition150Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition150Test.cs index 8c38702b2..360c3e547 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition150Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition150Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition151Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition151Test.cs index e7970e3d2..9e5a84dc6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition151Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition151Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition202Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition202Test.cs index a2b1f1c22..df2bfeb69 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition202Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition202Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition203Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition203Test.cs index d382f547f..098ab7edd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition203Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPosition203Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001Test.cs index b37c3d76d..030027ebf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001aTest.cs index a48090f35..e517be9ee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001bTest.cs index b4f0624ca..2d27c0308 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001bTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001cTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001cTest.cs index e47a96087..3e730887e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001cTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo001cTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002Test.cs index 58f2f30c1..d92bdb287 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002aTest.cs index 8c887112e..69aee8fb7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo002aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003Test.cs index 7aebd6b9d..bb4e86366 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003aTest.cs index ff6a041e7..ca98cd7e5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo003aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo004Test.cs index f7311d1b7..1126dc433 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005Test.cs index d41339ff8..ba4b31b15 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005aTest.cs index 2c1f3c2e1..da62a7e86 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo005aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006Test.cs index ecc3d9846..9c35971af 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006aTest.cs index 7bac6bc38..cf8b70c8c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo006aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007Test.cs index cae7b14ff..62d2d3b31 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007aTest.cs index a7177a536..e0b70004d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo007aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo008Test.cs index bded40df2..e4240c940 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo009Test.cs index e95c5e91b..75fa8c055 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo010Test.cs index 459ae2d00..7bcde5a23 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo012Test.cs index 4a395a89b..965e874f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo013Test.cs index fe1ba3d7c..a7f9332b0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo014Test.cs index 7b375a785..b07987ab7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo015Test.cs index 966635684..0a1ff0ecc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundPositionAppliesTo015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat001Test.cs index 467e20951..b7dd619b7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat002Test.cs index 8bc23a95d..f3b2bdfe4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat003Test.cs index 26536bab0..786e31e8e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat004Test.cs index 5172f0f89..63dd62192 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat005Test.cs index 3e203f5ba..50b003a84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeat005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo001Test.cs index 4d2ecbf1c..bca519432 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo002Test.cs index fe72a965f..d007e37de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo003Test.cs index fe1091c57..dc2023b05 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo004Test.cs index 76918dda4..dbe6d156a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo005Test.cs index b309ccefd..91ff7587b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo006Test.cs index eb2fb1dc0..bd5d9c296 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo007Test.cs index 04d601d7f..22aed5b38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo008Test.cs index c8e8394a9..e8f1b1ac7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo009Test.cs index 995ab6737..2b4d00cf0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo010Test.cs index 3fb672efc..2fb9533aa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo012Test.cs index 90a889d87..71dc1f24d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo013Test.cs index fb6cceabc..7947b804d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo014Test.cs index 6f4864400..789d49ae9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo015Test.cs index 7993c18d1..2880594da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRepeatAppliesTo015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundReset001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundReset001Test.cs index 73fa5d4c3..31d8a856f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundReset001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundReset001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot001Test.cs index c63b1311c..1b7c22cea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot002Test.cs index a1b8a2afa..f2bd94a05 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot003Test.cs index 99b1b2ac1..192addc6c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot004Test.cs index 24ce628dd..77cc055e5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot005Test.cs index 2da10a78f..6f88f7999 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot006Test.cs index df209ba79..2b86555e1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot007Test.cs index c416ba1af..2ebd3b75c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot008Test.cs index ad8be2fa5..6ffbc3468 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot009Test.cs index 18fd1a18c..809bb27bc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot010Test.cs index 5a9fb9651..b8731c78c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot011Test.cs index ac15bc07e..6017d0bc3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot011Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012aTest.cs index 69b6b4af4..21089c920 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012bTest.cs index 09e94c985..074030d38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot012bTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013aTest.cs index b01e103b6..ddb6d9f3f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013bTest.cs index e6c7b500f..83a1d049e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot013bTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014aTest.cs index 76a0153f2..e6c9b152b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014bTest.cs index e19efdcc8..a4e124b57 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot014bTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot015Test.cs index e95f5db73..aface67cb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot016Test.cs index 54944802c..f8e1b1d2d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot017Test.cs index dc78abf03..0dd4230e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot018Test.cs index 00b17d5f3..2085a02b4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot019Test.cs index 9843c75c3..a8c65d2e6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot020Test.cs index 97be6b995..caa51fcb8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot023Test.cs index 8ae547dbe..5634b4995 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot023Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot024Test.cs index 3345a8b36..129ebf0dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundRoot024Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundTransparency001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundTransparency001Test.cs index e2b2d86fe..70bd50366 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundTransparency001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/backgrounds/BackgroundTransparency001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter000Test.cs index 3a40bc9cf..335dfb121 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter001Test.cs index 05c62b2d1..d682949e5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter002Test.cs index f0b9450f9..ef7d68a08 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter003Test.cs index 807e51c97..09207a7e2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter004Test.cs index f2f7490ce..3a82c2937 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter005Test.cs index e49bf8430..da32078c4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter006Test.cs index fba64d5cd..cbfa46299 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter007Test.cs index 90bd52d22..db8f7cc92 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter008Test.cs index 8829539b0..e4706b4dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter009Test.cs index 929caabf7..b21365a2c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter010Test.cs index 5e01fd8e7..3008cf567 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter011Test.cs index abcf77476..ad3ef806b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter012Test.cs index a56609742..84b6caf4a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter013Test.cs index 831ce3771..82af648a1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter014Test.cs index 5d5c8a3b5..b08b64bb7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter015Test.cs index f9f1b3be0..60af877ad 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter016Test.cs index 6febe62b4..6f1d49dec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounter016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters000Test.cs index 78e278145..2570fa9b4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters001Test.cs index dcac4ee24..6823ce3ee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters002Test.cs index 23a9968d1..f8daa4672 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters003Test.cs index b9dff8efc..2ac07539e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters004Test.cs index 30fe316cd..4ace4b823 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters005Test.cs index d61d38161..4cfa90cea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters006Test.cs index 0b3cd2ccb..bc0f8084d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters007Test.cs index a4cbaff03..9d03285c7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters008Test.cs index 4327cdb32..d77acfbee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters009Test.cs index a39098d7a..b0631c0e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters010Test.cs index fa86fb363..ba9c730a4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters011Test.cs index 540902328..e6064cce6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters012Test.cs index 4786e9ddc..f58fa4f73 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters013Test.cs index 8af1f6bf7..fe29de98f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters014Test.cs index 29297ca58..9e26f1454 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters015Test.cs index 4b49a77dc..bc010b922 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters016Test.cs index 7f6ebcc19..c4831ff80 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters017Test.cs index e9b986962..d7d9daf4f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters017Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters018Test.cs index 0f20778b1..18c5fb6bd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/generated_content/ContentCounters018Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001RefTest.cs index 556ebd985..a515c9f79 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001Test.cs index 3e67306d7..5cec29b72 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/AnonymousInlineInherit001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/BaselineBlockWithOverflow001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/BaselineBlockWithOverflow001Test.cs index 34bf6dfc6..269428f54 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/BaselineBlockWithOverflow001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/BaselineBlockWithOverflow001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/BorderPaddingBleed001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/BorderPaddingBleed001RefTest.cs index 43e78362f..e8d54d893 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/BorderPaddingBleed001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/BorderPaddingBleed001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/EmptyInline001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/EmptyInline001Test.cs index 062d894e1..f9b115819 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/EmptyInline001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/EmptyInline001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/EmptyInline002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/EmptyInline002Test.cs index 7c51d44b4..d292a4579 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/EmptyInline002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/EmptyInline002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/FractionalLineHeightTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/FractionalLineHeightTest.cs index 41c7b37ec..6791fc669 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/FractionalLineHeightTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/FractionalLineHeightTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineBox001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineBox001Test.cs index c94f8480e..79a527e51 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineBox001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineBox001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineBox002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineBox002Test.cs index be681e314..e35145834 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineBox002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineBox002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext001Test.cs index b90a1fc8e..4f5a660aa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext002Test.cs index 850b0dd4f..691e54176 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext003Test.cs index 92030803c..912b438e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext004Test.cs index f23b16771..774c014a9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext005Test.cs index 5d65480e7..47082fd4b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext006Test.cs index 266dff4b9..52f6ea90e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext007Test.cs index 94fbd6cde..876b296ac 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext008Test.cs index c4b0300c6..2eea3e13a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext009Test.cs index 5b3165bad..eed4bb29f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext010Test.cs index 9f92a16ee..a5f71c7a3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext011Test.cs index 7cc43a3b1..4a48e1e6f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext011Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext012Test.cs index 534a73163..727cb5d56 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext013Test.cs index f7bd89a78..4e79f32c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext014Test.cs index 0406e9028..bb52384d0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext015Test.cs index 989aed43d..ec71c9db1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext016Test.cs index b655ea45e..f96577a64 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext017Test.cs index 1d476a5d2..f2a0ab144 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext018Test.cs index 19bfc4b82..e32bb6d77 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext019Test.cs index 7a5109f13..7137419ba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext020Test.cs index ef5ab3e92..f21bc5975 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext021Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext021Test.cs index 89936f275..0b0070565 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext021Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext021Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext022Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext022Test.cs index 48d00accd..0789ad0ae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext022Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext022Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext023Test.cs index 021254c5f..560c26224 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/InlineFormattingContext023Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/Leading001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/Leading001Test.cs index 9b59a7ee5..b493f1a84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/Leading001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/Leading001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineBoxHeight001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineBoxHeight001Test.cs index 633137539..ca6070d93 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineBoxHeight001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineBoxHeight001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineBoxHeight002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineBoxHeight002Test.cs index 100163d9f..a4e2804ae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineBoxHeight002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineBoxHeight002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight001Test.cs index 88e516413..8ca3ede28 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight002Test.cs index c47e84d4e..415d933de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight003Test.cs index 87187b718..45bbf5495 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight004Test.cs index 4cac3df08..351178afc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight005Test.cs index d2081e339..742a318e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight006Test.cs index efb4d6b5f..a9a638a8d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight007Test.cs index 58114310e..f8eab70df 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight012Test.cs index 3a99f241c..9f0af51e0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight013Test.cs index 1de5df940..8b47afc15 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight014Test.cs index 19422a18a..c076988f9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight015Test.cs index f26d61450..4c5d83744 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight016Test.cs index b5044946a..86cd5857a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight017Test.cs index 7cf418a6c..da94aea11 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight018Test.cs index 211b2103b..a5ff942f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight023Test.cs index b1f826753..5629b767e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight023Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight024Test.cs index b589ce9bc..ee20daab1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight024Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight025Test.cs index 5a246c3d2..32e1a95c4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight025Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight026Test.cs index 46aa87b92..75cbb335f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight026Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight027Test.cs index 7ad481333..ca25e8eb0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight027Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight028Test.cs index 6aac6ce4e..3ba38952d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight028Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight029Test.cs index 84003bfe7..ba4acd994 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight029Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight034Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight034Test.cs index 37123468b..ac4de1a4b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight034Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight034Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight035Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight035Test.cs index 605cd3ad5..fd84cdccc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight035Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight035Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight036Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight036Test.cs index 0bc63434a..f59c95d42 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight036Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight036Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight037Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight037Test.cs index cf51bce26..a66a9f2e2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight037Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight037Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight038Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight038Test.cs index 73e46fb05..d15e19334 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight038Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight038Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight039Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight039Test.cs index b4bb61a4a..8f9e183d5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight039Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight039Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight040Test.cs index dd30f0851..cd4543582 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight040Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight045Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight045Test.cs index ff927138c..2c94c74cf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight045Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight045Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight046Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight046Test.cs index 4c65be6ba..b3ec5373c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight046Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight046Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight047Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight047Test.cs index a747f7d54..4d1ca86f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight047Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight047Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight048Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight048Test.cs index f3332e504..bdc878be9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight048Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight048Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight049Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight049Test.cs index c3236d4d5..5bf8ef926 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight049Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight049Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight050Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight050Test.cs index 1b8a260fb..1d1d39132 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight050Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight050Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight051Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight051Test.cs index eda29baf4..40eab7a11 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight051Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight051Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight056Test.cs index f6e7bded9..cf74d0082 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight056Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight057Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight057Test.cs index a1894f81d..f669e36cd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight057Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight057Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight058Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight058Test.cs index 05fcdecff..d59111797 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight058Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight058Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight059Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight059Test.cs index e1351d51f..1a088a6ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight059Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight059Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight060Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight060Test.cs index 45fbb0abb..e2ca23a11 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight060Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight060Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight061Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight061Test.cs index 141858533..beaee14d2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight061Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight061Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight062Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight062Test.cs index 40541eddb..127d764b3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight062Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight062Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight067Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight067Test.cs index e69c6678c..0da6c1010 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight067Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight067Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight068Test.cs index fdbc90c4b..cce314d3a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight068Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight069Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight069Test.cs index b9fbbdff2..be2463ee3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight069Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight069Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight070Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight070Test.cs index 112aac88a..2631014f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight070Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight070Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight071Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight071Test.cs index 5a464ea4b..5f8c07421 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight071Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight071Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight072Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight072Test.cs index 7115b1575..66f8d5928 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight072Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight072Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight073Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight073Test.cs index 9eef5f76d..ec8d72fb5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight073Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight073Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight078Test.cs index 4d77a8243..c0d4256a9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight078Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight079Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight079Test.cs index 7fdfd43d5..f00cac8bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight079Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight079Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight080Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight080Test.cs index b29df1975..7bdf2a006 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight080Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight080Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight081Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight081Test.cs index bc15f1d74..4d3c57f1c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight081Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight081Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight082Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight082Test.cs index d5906b525..6df4423e9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight082Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight082Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight083Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight083Test.cs index 49c1b6f6e..6cec4ada9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight083Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight083Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight084Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight084Test.cs index 9beda9f7d..597ddd359 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight084Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight084Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight089Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight089Test.cs index e3eb67949..59bdca2d3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight089Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight089Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight090Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight090Test.cs index 9cc640036..852a858bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight090Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight090Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight091Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight091Test.cs index 3beedc8c7..dfbfe3d7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight091Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight091Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight092Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight092Test.cs index 601a830df..30cc78ffa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight092Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight092Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight093Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight093Test.cs index 6a88301e1..be778eb0e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight093Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight093Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight094Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight094Test.cs index a125aedea..a546c26c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight094Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight094Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight095Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight095Test.cs index 5054e9cb5..28269b3fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight095Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight095Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight100Test.cs index ea38e259f..0b992b3b0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight100Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight101Test.cs index fa2833980..0ddd0b2e6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight101Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight102Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight102Test.cs index 2559fdfe3..86580be23 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight102Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight102Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight103Test.cs index 26ba79c19..f4841b948 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight103Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight104Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight104Test.cs index 42a468c0a..813705718 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight104Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight104Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight105Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight105Test.cs index 2a96db475..7ec039025 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight105Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight105Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight106Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight106Test.cs index 9a5b434ad..7fd2cff05 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight106Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight106Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight111Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight111Test.cs index 4c773365d..a53b00db8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight111Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight111Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight112Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight112Test.cs index 456a34438..e77a3862d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight112Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight112Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight121Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight121Test.cs index 84dd4be99..971cb4b55 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight121Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight121Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight122Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight122Test.cs index a6af813e2..8fad1c45c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight122Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight122Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight123Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight123Test.cs index 0afa17f6c..e1aebcb03 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight123Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight123Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight124Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight124Test.cs index 48e372578..537c3b9d4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight124Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight124Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight125Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight125Test.cs index 69aa7f396..b77cd542e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight125Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight125Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight126Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight126Test.cs index 8b0e88603..ee9c5e3e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight126Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight126Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight127Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight127Test.cs index 669609266..505e2b3dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight127Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight127Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight128Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight128Test.cs index 1fd63f3e4..9702b861e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight128Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight128Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight129Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight129Test.cs index 9d0bef522..fefd8f321 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight129Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeight129Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo001Test.cs index ee6d1613a..824921daf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo002Test.cs index a59b3cc3a..ba0deea77 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo003Test.cs index 4272df1ad..e136c684d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo004Test.cs index 7d17d718c..371165a7d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo005Test.cs index 1f36c73f5..9bc6d970c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo006Test.cs index 410c6496e..9b8247153 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo007Test.cs index 5384bf3bb..c62cfade7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo008Test.cs index 276dad703..4172c92a7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo009Test.cs index 4aeb0eaa6..fbd1778ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo010Test.cs index 992ac6b51..8c39f9a26 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo012Test.cs index 2b56c67f6..bfdd95c89 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo013Test.cs index daedeccf0..31be711d9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo014Test.cs index 05a41e951..5da6b74b5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo015Test.cs index 23dc9c765..35971acc9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo016Test.cs index 9967680ac..a8996124d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightAppliesTo016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed001Test.cs index 731cc8b82..123124727 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed002Test.cs index 0a3dbce79..a9c67b5f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed003Test.cs index e4998f62f..a6a68e6da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightBleed003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightLargest001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightLargest001Test.cs index f278f2387..f4e1440d5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightLargest001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightLargest001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightNormalRecommendation001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightNormalRecommendation001Test.cs index 2055435ce..ea1e4265b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightNormalRecommendation001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightNormalRecommendation001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightOofDescendants001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightOofDescendants001Test.cs index cbb438635..3597ddc2c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightOofDescendants001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/LineHeightOofDescendants001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/ScrollableOverflowTentativeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/ScrollableOverflowTentativeTest.cs index 198034d53..d2d96a96b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/ScrollableOverflowTentativeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/ScrollableOverflowTentativeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign004Test.cs index 7023b0526..21aebb37d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign005Test.cs index c83eccc33..ca4db6cb1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign006Test.cs index 0ea1275d8..9e2a7e447 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign007Test.cs index 0ace0b0e3..a2a47e0cd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign008Test.cs index 6b2650635..19979ad4b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign016Test.cs index dfb73f66d..a4065ea97 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign017Test.cs index f1c2adacb..37b5852f6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign018Test.cs index 3543b6ef4..1fee45dcd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign019Test.cs index 95c6a0a37..db3060e33 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign020Test.cs index 6642c6c2f..11c7546d5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign028Test.cs index 2544e6d05..d00784126 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign028Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign029Test.cs index f7c72bf9e..424207120 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign029Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign030Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign030Test.cs index 3dfa751a5..0afa50b0c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign030Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign030Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign031Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign031Test.cs index 384e58e50..2dd8a08eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign031Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign031Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign032Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign032Test.cs index f1ade802b..d2d428bf6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign032Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign032Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign040Test.cs index 4c3a1e720..c290b3cb4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign040Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign041Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign041Test.cs index baeb60578..a6e0250d4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign041Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign041Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign042Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign042Test.cs index e5a6db2e6..8e43b7b28 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign042Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign042Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign043Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign043Test.cs index 91f065b0a..257975a7e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign043Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign043Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign044Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign044Test.cs index a85709d6a..c26928f30 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign044Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign044Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign052Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign052Test.cs index 74709feb5..d9bf1ed68 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign052Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign052Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign053Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign053Test.cs index c59f6f3c8..aea925780 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign053Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign053Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign054Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign054Test.cs index 9c12be7e7..1c39a8329 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign054Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign054Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign055Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign055Test.cs index 730137133..46f69d2dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign055Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign055Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign056Test.cs index 8e64ff294..644267e2f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign056Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign064Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign064Test.cs index 73cdc3c96..2e85821c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign064Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign064Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign065Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign065Test.cs index f51db38b5..ff9a8f645 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign065Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign065Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign066Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign066Test.cs index d1333c961..7808d219f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign066Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign066Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign067Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign067Test.cs index 6368a408b..fea94811f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign067Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign067Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign068Test.cs index ae634296c..1fdd84d88 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign068Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign076Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign076Test.cs index 395b8fc9b..66a68ab7a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign076Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign076Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign077Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign077Test.cs index 89f22579d..103aa6cb4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign077Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign077Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign078Test.cs index 8dc602b5a..6bcea1767 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign078Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign079Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign079Test.cs index 01d7c5be8..73b89e702 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign079Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign079Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign080Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign080Test.cs index 73671d64b..1e1d42b09 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign080Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign080Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign088Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign088Test.cs index 0fe1b6235..18e608124 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign088Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign088Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign089Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign089Test.cs index c3294a81b..191d273aa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign089Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign089Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign090Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign090Test.cs index 4487b6f5d..00b50ec71 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign090Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign090Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign091Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign091Test.cs index de97e47b3..2ac233148 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign091Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign091Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign092Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign092Test.cs index f536868c2..305fc7c73 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign092Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign092Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign100Test.cs index a674cc1b9..da3fff7e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign100Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign101Test.cs index 547eb3ef8..c72c96efc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign101Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign102Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign102Test.cs index cac5502ab..02abc7e09 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign102Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign102Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign103Test.cs index 347d01b80..70996cac7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign103Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign104Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign104Test.cs index 44ae0b473..46e6153f3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign104Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign104Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign109Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign109Test.cs index dbf886d6f..25f956b19 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign109Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign109Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign110Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign110Test.cs index 02a57e207..ee0b457ea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign110Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign110Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign111Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign111Test.cs index 0b0885f5e..7f46aa17d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign111Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign111Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign112Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign112Test.cs index 6e66b08da..f5e7b0d87 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign112Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign112Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign113Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign113Test.cs index d9ff80086..541a00017 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign113Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign113Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign114Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign114Test.cs index 4cc1bdbe5..568951571 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign114Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign114Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign115Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign115Test.cs index f7e1250ba..66382d319 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign115Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign115Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign116Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign116Test.cs index 5f9f0e871..f72ada30b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign116Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign116Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign117Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign117Test.cs index 55648f895..3e3800869 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign117Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign117Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign118Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign118Test.cs index b0c14fec7..880ec0700 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign118Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign118Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign119Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign119Test.cs index a0b9bc6f2..30bf06dee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign119Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign119Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign120Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign120Test.cs index 88a6488c7..82dc24393 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign120Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign120Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign121Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign121Test.cs index aa7ecd7e1..6872cfbf8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign121Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlign121Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo001Test.cs index 030f62243..a9aeb1ab0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo002Test.cs index 331653557..98522b51a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo003Test.cs index 99b641667..da219ec2c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo004Test.cs index 95269a6d5..e7d7826ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo005Test.cs index 9ab83769d..4fab26e7e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo006Test.cs index b7189d069..d28b312ea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo007Test.cs index d71ecd042..c22b463fc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo008Test.cs index 813b2b6ac..e1f95e1c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo009Test.cs index 4ee33dc33..820d9aa88 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo010Test.cs index 26837258e..7bd5eadc6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo012Test.cs index 80bb0f967..ada555b61 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo013Test.cs index 81805d2db..ec8a40396 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo014Test.cs index 93201f756..159dfd4c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo015Test.cs index 70ddaa48e..5ea2b5562 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignAppliesTo015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline001Test.cs index a96be93a5..f3a016161 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline002Test.cs index ae58fdaeb..b704b8ef4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline003Test.cs index 5b0e2417e..294244583 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline004Test.cs index 6d8bdfcc7..63567e8f9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline005Test.cs index 3d3f128e6..22f014a73 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline006Test.cs index 4581bef0a..0eeb98da4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline007Test.cs index 936e196e8..83dd6ddc9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline008Test.cs index 18d728c5d..af4a33266 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline009Test.cs index 480a2b875..0ed9a3a8d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline010Test.cs index 797d782cf..7aca0a287 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBaseline010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBoxes001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBoxes001Test.cs index c1296879a..9012e19a3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBoxes001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignBoxes001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001RefTest.cs index c6ff0a6e6..11e4b2a63 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001Test.cs index 2e87e4c18..7b3056cb2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNegativeLeading001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001RefTest.cs index b780b4215..d838cba84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001Test.cs index 04d668e63..936e6121d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignNestedTop001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignSub001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignSub001Test.cs index 3e73f1215..3981ea9fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignSub001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignSub001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignSuper001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignSuper001Test.cs index 15d81ac2f..d92191300 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignSuper001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignSuper001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignTopBottomPaddingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignTopBottomPaddingTest.cs index 089367296..e3a190b9c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignTopBottomPaddingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/linebox/VerticalAlignTopBottomPaddingTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement003Test.cs index d18f66ecb..173ee6133 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement004Test.cs index 67029b531..f48791fb3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement005Test.cs index 762ffb35d..366e32ddd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement006Test.cs index 954d82bc5..3d1a622e2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement007Test.cs index 03d8c605a..ea6f2be1f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement008Test.cs index 7bf7e4098..fcc3ee046 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement009Test.cs index 24181c395..c08ea28dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement010Test.cs index c3dca9f10..0d20dae8f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterIncrement010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset003Test.cs index 0de502e7d..c3b30e010 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset004Test.cs index 113478247..192267410 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset005Test.cs index 5075fbd35..47192bb75 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset006Test.cs index 51e8629d2..c5c037b38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset007Test.cs index 39c3ee755..24ecc8af9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset008Test.cs index 8fb7b31fc..a105ca862 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset009Test.cs index f81861e2d..2c7128024 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset010Test.cs index 2aaf661fa..53610f5c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/lists/CounterReset010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock000Test.cs index 26cd92e90..a4be15b99 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock001Test.cs index 5d4be7e91..760711941 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock002Test.cs index 524ddb90d..a1cb2b744 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock003Test.cs index 352380115..60640721f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock004Test.cs index f6082c1ba..4fe8562be 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock005Test.cs index 1327d8f80..f6891110e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlock005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight001Test.cs index 9112234d0..bb4a2e55f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight002Test.cs index 73f1103ad..f68b969f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockHeight002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight001Test.cs index 0c5962bc6..6eed7629b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight002Test.cs index cac46e8ba..0e0d32e74 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockNonReplacedHeight002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight001Test.cs index 96e3f13ee..98cbc8ca4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight002Test.cs index 372104334..0a86a95bb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight003Test.cs index f8c93f9bc..69bdf1e32 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedHeight003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth001Test.cs index 906694c16..6758a95fe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth006Test.cs index e9de44b7c..aae5e4c42 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockReplacedWidth006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001ATest.cs index 62a2154a8..819ea4dfa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001BTest.cs index 4de5dc065..fd47c24f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth001BTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002ATest.cs index 663de184f..c3567038d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002BTest.cs index 76a08be59..95ee7289e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/InlineBlockWidth002BTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth001Test.cs index 438be275c..323f3043f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth002Test.cs index 045a6f64e..2f901c41a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth003Test.cs index 065e48eb2..4c19545a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth004Test.cs index 157d998ab..0dfc15cf0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth005Test.cs index 0645b58fe..5673f2537 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth006Test.cs index ea5f1892e..56ba74479 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth007Test.cs index 1fcaf2f15..0a4a36eed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth012Test.cs index 6c6a5c9d8..bc8ce748d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth013Test.cs index 6f3e3f13d..f7615b17a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth014Test.cs index 8fed5a41d..eb8d9c87f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth015Test.cs index 54df33441..0c02eb17a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth016Test.cs index 3a9ae2134..c89aef94d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth017Test.cs index a8f5cfee6..08dad79e1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth017Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth018Test.cs index bf61ad7a8..d931ef954 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth018Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth023Test.cs index e69f0178e..033d8d3ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth023Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth024Test.cs index e4beaedac..9e9cf4a10 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth024Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth025Test.cs index e7d362afb..b6a184026 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth025Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth026Test.cs index e35052316..56e00d74c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth026Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth027Test.cs index 6c71055ab..1001145d5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth027Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth028Test.cs index 0c57030f1..fe6bb4c2e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth028Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth029Test.cs index 7b75b6e55..ee6231663 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth029Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth034Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth034Test.cs index 79a1cf6a9..e7fdf0c4c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth034Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth034Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth035Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth035Test.cs index 1c9fa46a5..b77052632 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth035Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth035Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth036Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth036Test.cs index d4c523833..c400dccdc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth036Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth036Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth037Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth037Test.cs index d81047fb4..96e1edca0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth037Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth037Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth038Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth038Test.cs index 5f13203b5..973979f99 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth038Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth038Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth039Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth039Test.cs index 732b3892a..1b2c1749f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth039Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth039Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth040Test.cs index 287a27d63..437e15f72 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth040Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth045Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth045Test.cs index d64d6a7a9..0d23742e5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth045Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth045Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth046Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth046Test.cs index aeb463df7..3eb592d53 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth046Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth046Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth047Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth047Test.cs index dda55f4f4..8b29ca0b5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth047Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth047Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth048Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth048Test.cs index 5ac5ca8ec..229ea2d02 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth048Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth048Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth049Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth049Test.cs index 580c9f38e..915569fbd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth049Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth049Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth050Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth050Test.cs index ab8f7664c..dffe900da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth050Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth050Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth051Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth051Test.cs index 4cafc5322..acf489270 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth051Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth051Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth056Test.cs index 3d12deaf1..b93f614a3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth056Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth057Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth057Test.cs index 57a009c0f..da75fca04 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth057Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth057Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth058Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth058Test.cs index 1f4ce56aa..664b0f5b3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth058Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth058Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth059Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth059Test.cs index 493115ee1..de022981b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth059Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth059Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth060Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth060Test.cs index 9031ef3f5..952ba861e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth060Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth060Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth061Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth061Test.cs index 733529bc1..277f3a52a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth061Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth061Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth062Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth062Test.cs index 40caf6977..1f8d473e8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth062Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth062Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth067Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth067Test.cs index a007ac720..1d6f4d22b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth067Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth067Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth068Test.cs index 6f086f4ac..763fe1866 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth068Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth069Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth069Test.cs index 68e534f94..077f6f25b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth069Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth069Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth070Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth070Test.cs index 7686d4208..a70d92170 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth070Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth070Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth071Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth071Test.cs index 8b87ade5c..5a962e007 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth071Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth071Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth072Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth072Test.cs index c4336a85b..4e9702717 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth072Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth072Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth073Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth073Test.cs index 18670d0a4..52773f253 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth073Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth073Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth078Test.cs index 73dbe8481..bd8d2b36e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth078Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth079Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth079Test.cs index 85d02d54f..2849d5a43 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth079Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth079Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth080Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth080Test.cs index 06269c466..1e0f906ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth080Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth080Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth081Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth081Test.cs index 32922380f..c670d854b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth081Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth081Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth082Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth082Test.cs index 64c60bb36..6e9133d09 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth082Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth082Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth083Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth083Test.cs index ba4241a40..a849564f4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth083Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth083Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth084Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth084Test.cs index c202b9714..4631263b1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth084Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth084Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth089Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth089Test.cs index 782218b38..f1d46bc7b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth089Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth089Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth090Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth090Test.cs index e72461ba8..ab7f316e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth090Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth090Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth091Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth091Test.cs index 4175db1c7..19c3b3b4d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth091Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth091Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth092Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth092Test.cs index 685fd7bac..30d2c595a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth092Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth092Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth093Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth093Test.cs index 23d0afb96..92c91bf5f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth093Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth093Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth094Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth094Test.cs index 0174d58cd..fcb537308 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth094Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth094Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth095Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth095Test.cs index 57b10e875..b5c526f95 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth095Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth095Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth100Test.cs index 349822140..9a5a130ee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth100Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth101Test.cs index 8c37c7471..40d788e78 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth101Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth102Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth102Test.cs index 58852e858..6ac66af51 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth102Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth102Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth103Test.cs index 62147a103..8b2840b43 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth103Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth104Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth104Test.cs index 6bb4968d9..6bf62c3bc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth104Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth104Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth105Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth105Test.cs index a9eb3abfa..2bd771109 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth105Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth105Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth106Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth106Test.cs index 5ff2bf5db..66ca98a6c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth106Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth106Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth107Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth107Test.cs index 70930b16a..9613a28f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth107Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth107Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth108Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth108Test.cs index 8d34a1bd1..cf503b3fc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth108Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth108Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth110Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth110Test.cs index 0b704e79d..f39f98997 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth110Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidth110Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo001Test.cs index e6af13749..9ee673632 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo002Test.cs index 7de4edf0b..9cea99672 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo003Test.cs index cfe03b21c..fe4c71a8a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo004Test.cs index bcd46a87f..54a4eb281 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo005Test.cs index 1d63fa55b..d97785bbe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo006Test.cs index 3966005f0..35e6efe62 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo007Test.cs index 9862edbc2..2fcf347a8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo008Test.cs index bd51c10bc..0980ee446 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo009Test.cs index 1d2a0152f..5c4b75ec6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo010Test.cs index 0c89cc043..da4a58a8b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo012Test.cs index 7af7d84fc..df59868b4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo013Test.cs index a9a4d2937..ba68e6ef3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo014Test.cs index d97161a68..55002ad13 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo015Test.cs index 04f28a861..bc36defca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo016Test.cs index 84998f405..9c93c8980 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthAppliesTo016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage001Test.cs index 5c5a30020..64228da3e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage002Test.cs index d772df1eb..3d9c6ff53 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage003Test.cs index b14a031b2..3d368b63e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MaxWidthPercentage003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth001Test.cs index 3b600fc49..67d38a2ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth002Test.cs index 04eed6bad..2e6d1e73f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth003Test.cs index e3ec09931..2aa846860 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth004Test.cs index dba8fe7e9..860c0ad9a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth005Test.cs index 47ea8622e..c4299edca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth006Test.cs index 3ca68472b..49519ab96 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth007Test.cs index f89a34bab..f91d1de97 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth012Test.cs index a39af6973..052e04b7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth013Test.cs index 9a961a4e7..e23345323 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth014Test.cs index 371bf36e7..156a27b60 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth015Test.cs index c286b56a5..efcb657bd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth016Test.cs index 1b357c463..ef45bed3d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth017Test.cs index 1b61c5518..3d4f93f0e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth017Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth018Test.cs index 822790ca8..dc40b9fe3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth018Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth023Test.cs index 093909c4f..4f30bc8ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth023Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth024Test.cs index 2a758adb2..a4aeaf485 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth024Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth025Test.cs index 8dc79fb9b..1940f3e0a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth025Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth026Test.cs index 6c6eb7817..8f05bc393 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth026Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth027Test.cs index 0c7fdf34d..5136d4561 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth027Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth028Test.cs index c39348610..de53efa74 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth028Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth029Test.cs index afb141ae5..8a25bda14 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth029Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth034Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth034Test.cs index 61b30843a..724fa80ec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth034Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth034Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth035Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth035Test.cs index 8a2394ccb..67acf718f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth035Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth035Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth036Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth036Test.cs index 7202dea65..7551d0abd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth036Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth036Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth037Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth037Test.cs index 983e6c634..cd9240a85 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth037Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth037Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth038Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth038Test.cs index 0668bee75..5ec80fdaa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth038Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth038Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth039Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth039Test.cs index 8a4c0881f..93f0003b6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth039Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth039Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth040Test.cs index 7c604d68e..b5918dd2a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth040Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth045Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth045Test.cs index a86177f0a..fde49febe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth045Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth045Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth046Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth046Test.cs index 39c7cc206..3b559276a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth046Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth046Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth047Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth047Test.cs index e3cee5e3b..453906d4f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth047Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth047Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth048Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth048Test.cs index b3932bb67..e644b0dea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth048Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth048Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth049Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth049Test.cs index f96a35eb4..5e3fd6661 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth049Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth049Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth050Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth050Test.cs index 5438b108f..3916ab9f9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth050Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth050Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth051Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth051Test.cs index 94b05c25f..80f081f16 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth051Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth051Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth056Test.cs index be4222aa9..863c80937 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth056Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth057Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth057Test.cs index 29966df2c..1cb4a84e0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth057Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth057Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth058Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth058Test.cs index 102e429e4..6273c0a21 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth058Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth058Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth059Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth059Test.cs index 13c143ae1..6dca43b35 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth059Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth059Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth060Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth060Test.cs index a753c9afa..70bfa541f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth060Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth060Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth061Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth061Test.cs index 231645473..3554e52a9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth061Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth061Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth062Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth062Test.cs index c022a5a4e..27ae490de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth062Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth062Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth067Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth067Test.cs index 098e5944c..15adf018c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth067Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth067Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth068Test.cs index 8786128fc..98ee5b6f6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth068Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth069Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth069Test.cs index 757bd9b54..79c71eb12 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth069Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth069Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth070Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth070Test.cs index 2310a7a85..ed670abb2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth070Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth070Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth071Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth071Test.cs index a156a912b..c85b20bd1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth071Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth071Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth072Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth072Test.cs index 038195aa5..745c1ca76 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth072Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth072Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth073Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth073Test.cs index ebf9f5178..1dbb0c812 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth073Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth073Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth078Test.cs index 6bbfcc3a9..3fafdc303 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth078Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth079Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth079Test.cs index deae8cac7..e49e073c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth079Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth079Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth080Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth080Test.cs index 6475a4a01..ef48d4765 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth080Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth080Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth081Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth081Test.cs index 17ae65311..d89fe1df7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth081Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth081Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth082Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth082Test.cs index 2e9d7cd86..da8aa1cc4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth082Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth082Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth083Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth083Test.cs index a88b3d3ba..d878346e0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth083Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth083Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth084Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth084Test.cs index c4a9776d2..ba3286ec2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth084Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth084Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth089Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth089Test.cs index a6865a070..7ce9f7f56 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth089Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth089Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth090Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth090Test.cs index 0f3cc578f..2a18a49f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth090Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth090Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth091Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth091Test.cs index 1b50dde55..e4da6383a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth091Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth091Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth092Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth092Test.cs index 0e12e1908..e1014ffb1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth092Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth092Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth093Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth093Test.cs index 3460c0d9d..e1f5e6889 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth093Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth093Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth094Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth094Test.cs index d2b84bbd7..790ffa3ae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth094Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth094Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth095Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth095Test.cs index 083e82d47..8c81cd4d2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth095Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth095Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth100Test.cs index 252823cea..15aec2fcd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth100Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth101Test.cs index 23dcefa02..f2cc80271 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth101Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth102Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth102Test.cs index 1ef47f0e3..fd24b2a8f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth102Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth102Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth103Test.cs index c6082850b..48b79beb5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidth103Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo001Test.cs index 972fde42f..72806370b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo002Test.cs index 8c0c37911..2fca48528 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo003Test.cs index 1189a6937..db1c1edec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo004Test.cs index 4279c0ca4..ff9fc79c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo005Test.cs index d9bed6a03..1b45b0f38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo006Test.cs index 709690f18..61900df49 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo007Test.cs index 187535ea9..a036dc413 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo008Test.cs index 0d09984e8..c16206fc0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo009Test.cs index b061d7def..3e389780b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo010Test.cs index 894e640fe..1e0d07557 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo012Test.cs index 4222ec434..3a4a500c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo013Test.cs index e9decf7df..6ee7ad03a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo014Test.cs index f5987feed..5fd35a520 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo015Test.cs index e2868e700..d56281dea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo016Test.cs index e6555ee5d..fbbf64d8a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthAppliesTo016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage001Test.cs index de2fd547d..ddf469a0a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage002Test.cs index 385347da3..438e957d0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage003Test.cs index 83b6b39b6..c8a3980b6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/MinWidthPercentage003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width001Test.cs index 8ad3010b4..4ba92d6ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width002Test.cs index 552179968..2ccf9cda4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width003Test.cs index f984bc511..acac3dd80 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width004Test.cs index 419ceb7d9..fd74db270 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width005Test.cs index 4912bb231..00a6353b3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width006Test.cs index fbb5c210c..10be58927 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width007Test.cs index 33c963c3c..5e2f63265 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width012Test.cs index c3a3d367e..af2b223e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width013Test.cs index 6630feb93..393ed7ca4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width014Test.cs index e81b289e7..ed744e769 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width015Test.cs index c1cba9c1c..49ff6ec45 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width016Test.cs index c2e6d2953..1cb42707c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width017Test.cs index ac04a2294..2499afb84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width017Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width018Test.cs index 8731d5ad6..5a55d4a89 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width018Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width023Test.cs index e53f78cad..9d6b6f88d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width023Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width024Test.cs index afd3aecfd..4a1d72666 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width024Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width025Test.cs index b5b29d341..c45a814d2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width025Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width026Test.cs index 0c0f28d1c..4a86ecdd3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width026Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width027Test.cs index 90f6323b6..0c3a498b8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width027Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width028Test.cs index afd767293..7bf3ad639 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width028Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width029Test.cs index 7fe4be605..e8ffb08c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width029Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width034Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width034Test.cs index 6d2429320..719e8e5cf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width034Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width034Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width035Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width035Test.cs index a55317f6f..f962a500b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width035Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width035Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width036Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width036Test.cs index 2e6d64264..d2a3966f6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width036Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width036Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width037Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width037Test.cs index 072173fd6..7a51c3d44 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width037Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width037Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width038Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width038Test.cs index ade6d6e9c..c893b9758 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width038Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width038Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width039Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width039Test.cs index 3bd3dda52..05a1d63c4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width039Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width039Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width040Test.cs index 6ac2f571d..5c037303e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width040Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width045Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width045Test.cs index f1f7da669..88d1046b6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width045Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width045Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width046Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width046Test.cs index 10c7a1c28..15a0ac25e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width046Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width046Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width047Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width047Test.cs index 272ca413f..053ac943b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width047Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width047Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width048Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width048Test.cs index 8b04e7edf..e97e9eba6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width048Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width048Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width049Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width049Test.cs index 314a76b06..7f67c597e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width049Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width049Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width050Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width050Test.cs index 022ea5211..48cc3647b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width050Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width050Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width051Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width051Test.cs index bfa972cc8..2d5a30730 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width051Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width051Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width056Test.cs index cf329603b..1b8af7554 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width056Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width057Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width057Test.cs index f8afbaaa2..542fc9244 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width057Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width057Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width058Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width058Test.cs index 0ab3b18bc..07da0a19f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width058Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width058Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width059Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width059Test.cs index e22ec1499..821248612 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width059Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width059Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width060Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width060Test.cs index 504f30cec..f45e840a7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width060Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width060Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width061Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width061Test.cs index e59000968..c014cf0ec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width061Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width061Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width062Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width062Test.cs index 1a2dd5793..8fb49da74 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width062Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width062Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width067Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width067Test.cs index b7cc2df61..8e2c307c6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width067Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width067Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width068Test.cs index 2f5284744..0801baf0f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width068Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width069Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width069Test.cs index 59b4269ae..90951cd40 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width069Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width069Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width070Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width070Test.cs index c3f3358c7..44a9a2ade 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width070Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width070Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width071Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width071Test.cs index 575e55b36..e5eb511b7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width071Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width071Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width072Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width072Test.cs index b3f632164..24c14d19d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width072Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width072Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width073Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width073Test.cs index 48458b4fd..439ba36a1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width073Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width073Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width078Test.cs index 1ca90471d..1725c85de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width078Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width079Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width079Test.cs index 4688d71b7..4f2b1013e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width079Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width079Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width080Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width080Test.cs index dbdd6f50c..838ab1480 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width080Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width080Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width081Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width081Test.cs index 01a55ec1a..7599b9944 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width081Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width081Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width082Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width082Test.cs index 301e35556..756ceee25 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width082Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width082Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width083Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width083Test.cs index 68050069d..4c1df601c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width083Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width083Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width084Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width084Test.cs index 2e8cc9d87..bb448aea6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width084Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width084Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width089Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width089Test.cs index 397419939..3e0dcad00 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width089Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width089Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width090Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width090Test.cs index 1dad06277..3092416f3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width090Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width090Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width091Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width091Test.cs index 3cd8e0a4b..9eb35c32c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width091Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width091Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width092Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width092Test.cs index 7f88d683b..5a19200cc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width092Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width092Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width093Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width093Test.cs index 1f8a33a7f..8dbcb54ea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width093Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width093Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width094Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width094Test.cs index b66dab206..944a51a99 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width094Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width094Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width095Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width095Test.cs index 2b4eb8362..9871f68a8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width095Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width095Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width100Test.cs index 35b6ebed5..9da686b6e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width100Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width101Test.cs index edd33b46c..e5c3f3735 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width101Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width102Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width102Test.cs index ae8028aa2..293ce0e9d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width102Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width102Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width103Test.cs index b8b752061..e15b7c34c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width103Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width104Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width104Test.cs index 0030ed39b..0614427eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width104Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/Width104Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo001Test.cs index 07fb4b17e..b71f6dfda 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo002Test.cs index b7f238820..12dbe61d6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo003Test.cs index ba2d50d21..eb8ea89fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo004Test.cs index 93b190d23..d1fb3e98d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo005Test.cs index ea528895f..a001fd0dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo006Test.cs index 6cdcbde64..31ffa2797 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo007Test.cs index 403cba451..a72c322c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo008Test.cs index 9ee1dcfba..cf1bc0d79 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo009Test.cs index 988200b9f..892f6c4e5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo010Test.cs index 0e9f6e129..58b9856c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo012Test.cs index 8ea0127b5..9d0332dba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo013Test.cs index 1dbfec4b7..c1278eece 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo014Test.cs index 4f25c38ff..bea2e1b38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo015Test.cs index e96d4b262..18ecb3b44 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo016Test.cs index e884d5652..5c8a54511 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthAppliesTo016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthInherit001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthInherit001Test.cs index 51f7c87c3..1cb73de21 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthInherit001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthInherit001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthNonReplacedInline001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthNonReplacedInline001Test.cs index b154badfa..71842d0d1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthNonReplacedInline001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthNonReplacedInline001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthPercentage001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthPercentage001Test.cs index c461aae74..b3f746b0b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthPercentage001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthPercentage001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthPercentage002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthPercentage002Test.cs index 85eda0065..acf59f5d4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthPercentage002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthPercentage002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthReplacedElement001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthReplacedElement001Test.cs index 5a17c60e7..96a094db8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthReplacedElement001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthReplacedElement001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthUndefined001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthUndefined001Test.cs index c8112b320..ce9d55f66 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthUndefined001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/normal_flow/WidthUndefined001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter000Test.cs index 395f56d31..ba3343f4f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter001Test.cs index ded941e7e..6c573e281 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter002Test.cs index edc727e4a..5e71b02de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter003Test.cs index b9151e240..33cdc7eb8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter004Test.cs index ddb8ae8e5..84f8cbd0a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter006Test.cs index cff807540..4227dc8c6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter010Test.cs index fcc3bc081..40125b35d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakAfter010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore000Test.cs index dd203c3ff..8e748d25a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore001Test.cs index e7bc6d7d5..f1b7a6601 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore002Test.cs index 2c980666e..d00da7440 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore004Test.cs index 06f3c2f89..e1f123bac 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore005Test.cs index 3f843ae21..3fb7b2524 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore006Test.cs index d5ad8bc22..426b72eb2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore008Test.cs index 925b890de..433995413 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore020Test.cs index 4a0ec3b33..c4cb4fc8a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakBefore020Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakMargins001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakMargins001Test.cs index 135b12d7d..e345c92c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakMargins001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakMargins001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakMargins002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakMargins002Test.cs index f5d711aaf..b5a665843 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakMargins002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreakMargins002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreaks100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreaks100Test.cs index 145a45d58..8ce1a709f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreaks100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreaks100Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreaks101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreaks101Test.cs index 15548a3ee..2d98da2f0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreaks101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/pagination/PageBreaks101Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight001Test.cs index f76aab0fd..8f3c5a7b7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight004Test.cs index d943cae67..ab671bd6c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight010Test.cs index 31658a93b..e3cf331e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight011Test.cs index 696046dca..d5c811988 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight012Test.cs index f2710a609..8aede8b3e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedHeight012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight006Test.cs index 1a803aac4..1596a3829 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight010Test.cs index 14e35522a..4c96ce4d0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight012Test.cs index 166d3c96b..587aa331a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedMaxHeight012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth015Test.cs index 577ae0fbc..5d72b92a4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth017Test.cs index 7a2d1fd1b..7de01c8b9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth018Test.cs index 38e06612c..044cf4d37 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth019Test.cs index b063a080d..fc4566d02 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth021Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth021Test.cs index 4895dda60..ae5ede9ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth021Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth021Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth022Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth022Test.cs index d12e7e32f..ab4c3761c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth022Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth022Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth023Test.cs index 271c90989..455580f83 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteNonReplacedWidth023Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteReplacedHeight001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteReplacedHeight001Test.cs index 1c3a8c305..1f040d5f5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteReplacedHeight001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsoluteReplacedHeight001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Abspos027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Abspos027Test.cs index de8e39a89..45a199672 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Abspos027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Abspos027Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock001Test.cs index c34ca6649..498d08e9f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock002Test.cs index 9a2e9381a..c8064e1a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock007Test.cs index a0e5578dd..d54d8a268 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/AbsposContainingBlock007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom004Test.cs index 05d6c6e49..8b84e8779 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom005Test.cs index a01b39670..e2baff738 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom006Test.cs index 8f7e33b72..02fbae9ca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/Bottom006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute001Test.cs index b05530607..7ae58dfb7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute002Test.cs index 28bcb6531..75f2eb052 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute003Test.cs index 31ba5d8b6..21ceaf4f7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute006Test.cs index a674da791..eff84528c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute008Test.cs index 6789dc423..48b7774e7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionAbsolute008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative001Test.cs index f107f6c38..c73b1fca8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative002Test.cs index cf3a43edb..12bca83fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative003Test.cs index 95300323b..9c0f60f09 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative004Test.cs index 4c35f3874..ce9e5f4ba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative005Test.cs index f5e01f166..3845f7745 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative006Test.cs index beee7df9b..cbe86bc72 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative009Test.cs index 3e6a124c0..c3c63d83c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative010Test.cs index dc644b001..327fe9973 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative013Test.cs index 0088af8cd..470d7e8c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative014Test.cs index 08a2bf664..abccadaa1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative015Test.cs index 852528b3c..57b70c076 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative016Test.cs index 3e5384596..cc8121ab8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative017Test.cs index 56c79b086..22d1cc6b8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative017Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative019Test.cs index c3bb53b88..29da84df5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative019Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative027Test.cs index bfd2c477d..6e46369d7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative027Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative028Test.cs index ce81043d4..6d9171ad5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative028Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative029Test.cs index e285ff4b1..1a954b2b2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative029Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative030Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative030Test.cs index 6e9831616..204d65427 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative030Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative030Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative031Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative031Test.cs index 97816c429..045fb42fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative031Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/PositionRelative031Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/TopOffset003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/TopOffset003Test.cs index 8f39d4f6f..e7f244cfb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/TopOffset003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/positioning/TopOffset003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign001Test.cs index 317681520..2503992c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign002Test.cs index ae54fe723..5443247e2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign003Test.cs index 553318db5..2ed876be8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign004Test.cs index e0a928a8d..f8827fea5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign005Test.cs index 37033cd3c..421baa405 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlign005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo001Test.cs index 40e53e8c5..e6043d28d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo002Test.cs index 3bf32bccd..9a22e8f3d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo003Test.cs index fc8d1d065..d7f6c42eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo005Test.cs index 24602f73a..e9e36ec59 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo006Test.cs index e1022462a..be74c541b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo007Test.cs index 77c380f63..6166985ad 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo008Test.cs index db06bf5a5..3eebd2b6e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo009Test.cs index 926891b09..0b3319294 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo010Test.cs index e92d569ef..99823b346 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo011Test.cs index e79e48c63..33fee9304 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo012Test.cs index 81ff53840..df2629ba8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo013Test.cs index f1eb28c41..c713b8854 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo014Test.cs index 330afd3fb..83bfeebb4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo015Test.cs index 03232b22f..7c1e0b5a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignAppliesTo015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignInherit001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignInherit001Test.cs index fbb09b08e..ff866b726 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignInherit001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignInherit001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace001Test.cs index c2e8258e9..4d875319a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace002Test.cs index 02a71885c..f1c6e3a79 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace003Test.cs index 42a114b6d..b7b0c2260 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace004Test.cs index 90ae01ece..d7ca8dd90 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextAlignWhiteSpace004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent004Test.cs index 56820f376..4cd2a6dc5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent005Test.cs index 558d2a7dc..550cafbc0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent006Test.cs index 5a1af9f6c..724b7ef72 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent007Test.cs index 4f9d6b046..d0ffe9bcf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent008Test.cs index 2777ae9c2..c0c376f4d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent010Test.cs index 9b7c40ea7..741243950 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent011Test.cs index ea6031307..f92329c73 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent012Test.cs index 7c1cf937a..1900c0a42 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent013Test.cs index af5eb1ae2..55f3e6c8c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent014Test.cs index 014931c3a..95a1a5b77 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent016Test.cs index 5573e20ad..d6d51af92 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent017Test.cs index db8eb71c7..e8d8753cd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent017Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent018Test.cs index 8b22ae095..6d4b2287f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent018Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent019Test.cs index 7080e032d..6d37ae473 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent019Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent020Test.cs index 2d6376ce9..1e82d41bc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent020Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent028Test.cs index 50ab236f4..30f48f3e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent028Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent029Test.cs index 3db99938e..6533666fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent029Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent030Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent030Test.cs index caca13bca..440c5f765 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent030Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent030Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent031Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent031Test.cs index b869473e0..c5fb6337b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent031Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent031Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent032Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent032Test.cs index 97954c8bc..9ded740c3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent032Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent032Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent040Test.cs index cc752d430..773d02a47 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent040Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent041Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent041Test.cs index c77109b3f..f956540b7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent041Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent041Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent042Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent042Test.cs index 466db2b60..9884584ad 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent042Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent042Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent043Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent043Test.cs index b262b47be..ae0d1e301 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent043Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent043Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent044Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent044Test.cs index 5dd6d140a..27b9b35db 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent044Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent044Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent052Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent052Test.cs index 53b9c2715..ac4714060 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent052Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent052Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent053Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent053Test.cs index b742cb206..86b7059ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent053Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent053Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent054Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent054Test.cs index 477310b8c..7d6acfddd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent054Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent054Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent055Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent055Test.cs index 4e0501937..2e34b59b2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent055Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent055Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent056Test.cs index aa4c0547a..d275f7161 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent056Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent064Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent064Test.cs index f902b8dee..d5e250efc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent064Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent064Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent065Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent065Test.cs index fcd18335d..039938d57 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent065Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent065Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent066Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent066Test.cs index f15a3b703..d61a2f46b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent066Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent066Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent067Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent067Test.cs index 7038e77b0..821dd7479 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent067Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent067Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent068Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent068Test.cs index 78d0b14f6..abff4640a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent068Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent068Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent076Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent076Test.cs index c968fca5d..d55d4ff84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent076Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent076Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent077Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent077Test.cs index 0a65ac8a6..77ab2635a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent077Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent077Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent078Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent078Test.cs index 411a71a49..167ef1e9e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent078Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent078Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent079Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent079Test.cs index f94504a2f..36aa3316a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent079Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent079Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent080Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent080Test.cs index 2ede2f147..6aec9913a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent080Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent080Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent088Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent088Test.cs index 7b783c75c..06b55c4d8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent088Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent088Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent089Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent089Test.cs index 9a4ae4c6e..5b557b346 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent089Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent089Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent090Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent090Test.cs index 0e83cd9d9..7883fe5af 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent090Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent090Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent091Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent091Test.cs index 0ce0bd0d6..1a561f954 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent091Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent091Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent092Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent092Test.cs index 09f988079..81eeacd40 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent092Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent092Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent100Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent100Test.cs index d4989c738..748370a2e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent100Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent100Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent101Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent101Test.cs index f0d89b92c..8755ecb10 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent101Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent101Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent102Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent102Test.cs index c5c043fbf..0d61dbe7d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent102Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent102Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent103Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent103Test.cs index f885a5eb9..167db53df 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent103Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent103Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent104Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent104Test.cs index 6adeb4b75..3765ac95c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent104Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent104Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent109Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent109Test.cs index 7abc1c4f1..aa9d11880 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent109Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent109Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent110Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent110Test.cs index 11a737c91..fbc4aebc1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent110Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent110Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent111Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent111Test.cs index 7ec222dc3..a73157544 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent111Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent111Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent112Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent112Test.cs index 4f12a578c..481f5bd2d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent112Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent112Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent113Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent113Test.cs index 2aa4e047c..ff816f7a7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent113Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent113Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent114Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent114Test.cs index 87e381522..531e27ef5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent114Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent114Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent115Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent115Test.cs index f0aac2927..e4db9ceac 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent115Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndent115Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo001Test.cs index f228712b5..69df3da94 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo002Test.cs index 4f043c3b0..7226f91b6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo003Test.cs index e1a946698..233bdc0af 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo005Test.cs index 6f0a2d031..8f6d54b66 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo006Test.cs index 90c76763c..db119f926 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo007Test.cs index d83cb738d..feac81dad 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo008Test.cs index 3bf052a0f..6dcff4237 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo009Test.cs index ae6cdf5c2..3a6bb0793 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo010Test.cs index 9970d5b6d..3e33a82fc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo011Test.cs index e21d53d25..7b90d374e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo012Test.cs index 73779626a..0cb5866ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo013Test.cs index e3beb90f5..a42bf9fea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo014Test.cs index 460aff185..3d8ccd302 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo015Test.cs index 4e9f7d88b..8dbf0e215 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentAppliesTo015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentInherited001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentInherited001Test.cs index fa724f997..38ba056ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentInherited001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentInherited001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic001Test.cs index c0c832151..a8f08a379 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic002Test.cs index b915afe64..063776a55 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic003Test.cs index ac02e4cb0..ced73347d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic004Test.cs index 53ea88738..1d3b40c1f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentIntrinsic004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow001Test.cs index 2f382cd50..cd52608d4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow002Test.cs index 6d366db5f..27f5492c5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow003Test.cs index c1a179130..23aa238e5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow004Test.cs index 21e8f2fb6..09ea5eae0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentOverflow004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentPercent001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentPercent001Test.cs index 116e7299d..4f5fc7720 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentPercent001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentPercent001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentWrap001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentWrap001Test.cs index ef484e1fd..150fe2bec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentWrap001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextIndentWrap001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform001Test.cs index 6722dd77c..b7711b445 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform002Test.cs index bc989bb23..baacc626a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform003Test.cs index e3eee149c..5d7c54f9e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform004Test.cs index fa0af6d04..0d808956d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform005Test.cs index c5b420a4b..5995cb92f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransform005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo001Test.cs index 579314b4a..76c2380fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo002Test.cs index 4915b7ab3..9431ae304 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo003Test.cs index 04c7c9e01..cc9a464ee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo005Test.cs index b0591f0e5..696649c95 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo006Test.cs index 33689a1d0..03033129f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo007Test.cs index bdf81cfa6..3c7e909f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo008Test.cs index a523ad804..b05c402b5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo009Test.cs index 3ddc7d12b..103ec211c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo010Test.cs index 1552d5a7f..4548dd954 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo011Test.cs index 68b972c9c..51cb25cfa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo012Test.cs index 31f9337b1..139356e3c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo013Test.cs index 82ad0aa51..7f8e6927a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo014Test.cs index 9cb25dad1..c2fb1720c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo015Test.cs index b6595e5ae..1dbbf011e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformAppliesTo015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize001Test.cs index 58f7e198b..915e79bf7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize002Test.cs index 633670a8a..e4ffc6190 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize003Test.cs index 0bf6338c5..a7bc44205 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformCapitalize003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformLowercase001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformLowercase001Test.cs index eab5f2ab5..1e0d7389c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformLowercase001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformLowercase001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUnicase001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUnicase001Test.cs index 436808525..59b4c82c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUnicase001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUnicase001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUppercase001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUppercase001Test.cs index 3a2044beb..3530aa8ce 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUppercase001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUppercase001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUppercase002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUppercase002Test.cs index f5d7a20ee..e940431ae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUppercase002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/TextTransformUppercase002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace001Test.cs index bc57a3ac1..506fd84af 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace002Test.cs index cc6c38369..82563ed95 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace003Test.cs index 1aa6f3b29..50a3525c5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace004Test.cs index e6c00ee12..cc624aa3a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace005Test.cs index 56d569427..f5118fb7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace006Test.cs index 2bcd39602..e3950f8a1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace007Test.cs index cba1ec361..2fcf43c6f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace008Test.cs index 96b779c3f..d0cb2d2f9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpace008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo001Test.cs index 16d9082a6..a5df447f6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo002Test.cs index decadcf12..5d27ac32d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo003Test.cs index 268309918..25f2a651a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo005Test.cs index 966457066..8ca2127de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo006Test.cs index 8c99caa19..bb55a998d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo007Test.cs index f4b38dcba..c0588266e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo008Test.cs index f960a6a9f..32574b3fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo009Test.cs index b1d18ec6d..1064a5c71 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo010Test.cs index 41c731e54..cb787ed34 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo011Test.cs index 8cac628bf..a2e3d6233 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo012Test.cs index b82d19a1c..2dc605eec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo013Test.cs index 6e77f0e4d..f39fb1928 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo014Test.cs index f13ea1249..bb6956a7e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo015Test.cs index 0dfa34b12..55995553d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceAppliesTo015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing001Test.cs index 3d6d52c67..ffe4a195a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing002Test.cs index 143ae9753..2dce4b888 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing003Test.cs index f4d078ec7..9a131491b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing004Test.cs index b64db1273..da73b4601 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing005Test.cs index bf65e1607..8794ec7fc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsing005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsingBreaks001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsingBreaks001Test.cs index 9469f2065..0f5ee2a70 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsingBreaks001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceCollapsingBreaks001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceControlCharacters001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceControlCharacters001Test.cs index 7918fd914..3edf01efa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceControlCharacters001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceControlCharacters001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceGeneratedContentBefore001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceGeneratedContentBefore001Test.cs index 9cc142fe2..51f45d834 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceGeneratedContentBefore001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceGeneratedContentBefore001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed001Test.cs index 7f1dc091e..46f2954a0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed002Test.cs index 1857763fb..75d9ec652 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed003Test.cs index 6d5565bd6..e8cfebd33 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed004Test.cs index 1c0ee1bf4..c7e52e56a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceMixed004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal001Test.cs index dad7e1e16..52e7d9679 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal002Test.cs index 9e230aca7..07436ad4c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal003Test.cs index f6795a9ac..987013f1c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal004Test.cs index 6794934de..f41e9ce50 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal005Test.cs index d4eb9307f..196fb785d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal006Test.cs index fcecd05a4..1a615e2e7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal007Test.cs index 03f632676..14de30ab0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal008Test.cs index aca5f7ae8..eaf562a0f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal009Test.cs index f4092491a..0398d876c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNormal009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap001Test.cs index de11d3a9e..53f19a3ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap005Test.cs index 93b3f3154..48b3c2502 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap006Test.cs index 093ff039e..90eb23240 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrap006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrapAttribute001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrapAttribute001Test.cs index dd0f63803..dae81e817 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrapAttribute001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceNowrapAttribute001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePElement001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePElement001Test.cs index 8fda2f0c0..66021b938 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePElement001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePElement001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre001Test.cs index 4ab148452..0d945367c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre002Test.cs index 922f52517..1cb7e4faa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre005Test.cs index 147d276ab..e06b2d9c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre006Test.cs index dab26c0b3..743f7d8eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre007Test.cs index c1aa0bdd9..44b2140ca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePre007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePreElement001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePreElement001Test.cs index ef03e9164..2f22dcd32 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePreElement001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpacePreElement001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing001Test.cs index 0e3239841..9001c9d47 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing002Test.cs index 38c631f0d..9e4f390ba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing003Test.cs index 2e47b6c34..b21aebab8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing004Test.cs index 12051dfeb..7b719cde7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing005Test.cs index c95aec165..d30641383 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing006Test.cs index a9474d43d..d66b58b4a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing007Test.cs index efbb1b9c7..5edf8751e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing008Test.cs index 3b600732c..7708b0871 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing009Test.cs index 345ec3875..ff8f5e2ee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing010Test.cs index a6a242735..f2a1575fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing011Test.cs index a0f3889ad..f4c9c70ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing012Test.cs index a98de2a39..2b8fee142 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing013Test.cs index 6cb9f9b97..70647b0ea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing014Test.cs index b7170bb57..4a0aa3d1b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing015Test.cs index 9f93616fa..fdfb56195 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing015Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing016Test.cs index b9fc66f6e..953981b4b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing016Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing017Test.cs index 77f3e4d95..7ff839441 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing017Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing018Test.cs index 30a128625..ff4b6afe4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing018Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing019Test.cs index 8691f8270..939d6367e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing019Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing020Test.cs index e1a21cb07..9e7ff126f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing020Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing021Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing021Test.cs index b169acf19..e88127a22 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing021Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing021Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing022Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing022Test.cs index 3001e51f4..42a0ed2f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing022Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing022Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing023Test.cs index 083a116c3..a111ceacf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing023Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing024Test.cs index 1256e6ce5..26e9aa786 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing024Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing025Test.cs index 20ed4280c..4d3b0475c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing025Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing026Test.cs index f25f5883b..aeffd9646 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing026Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing027Test.cs index 90c1fac74..a949f3fd9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing027Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing028Test.cs index d5b530183..ffee9b658 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing028Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing029Test.cs index 7978c314f..5af2b0d6a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing029Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing030Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing030Test.cs index 3ea88ab8d..84e5e77dd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing030Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing030Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing031Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing031Test.cs index 9a54d5c4b..6d8b3c049 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing031Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing031Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing032Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing032Test.cs index 2b2f55bd8..cda4fdc14 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing032Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing032Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing033Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing033Test.cs index ebc886c46..1aa5156c3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing033Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing033Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing034Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing034Test.cs index fbeaca24c..30f04ebf6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing034Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing034Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing035Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing035Test.cs index a9b826ad8..377e9ddd0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing035Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing035Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing036Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing036Test.cs index 4f68494e4..a23ace519 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing036Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing036Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing037Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing037Test.cs index 589601120..893084139 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing037Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing037Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing038Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing038Test.cs index 5054fc920..532ded8f2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing038Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing038Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing039Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing039Test.cs index 11d9c8a71..c5f227213 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing039Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing039Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing040Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing040Test.cs index 9132545b2..c4e8665bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing040Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing040Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing041Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing041Test.cs index a8df1e701..de43a4b89 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing041Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing041Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing042Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing042Test.cs index 4eb46334c..e01a98e7f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing042Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing042Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing043Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing043Test.cs index 6ddbdbca8..274a1f685 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing043Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing043Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing044Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing044Test.cs index 037d479df..23ffcf014 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing044Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing044Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing045Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing045Test.cs index aad87bb24..f9c1becb8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing045Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing045Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing046Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing046Test.cs index 57b80b926..3302206df 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing046Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing046Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing047Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing047Test.cs index 4225d1dd8..3d787f4ea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing047Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing047Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing048Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing048Test.cs index 70bae7e9a..dba173b86 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing048Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing048Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing049Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing049Test.cs index 5268caa82..c96aa9e1c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing049Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing049Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing050Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing050Test.cs index 42df7f333..e30c5ae85 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing050Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing050Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing051Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing051Test.cs index 46852bc0e..46843c47b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing051Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing051Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing052Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing052Test.cs index f1f3b7174..76217cf2e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing052Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing052Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing053Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing053Test.cs index 9a44c4844..e0b2862c6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing053Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing053Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing054Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing054Test.cs index 2cfa4ca6c..bd08d60d3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing054Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing054Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing055Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing055Test.cs index 5cd53e197..3a0c3e923 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing055Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing055Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing056Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing056Test.cs index e99f74997..765672343 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing056Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing056Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing057Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing057Test.cs index f37738389..522f66b4d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing057Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing057Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing058Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing058Test.cs index b68864b7b..4d05e0876 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing058Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/text/WhiteSpaceProcessing058Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/ui/Overflow001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/ui/Overflow001Test.cs index c5d4954b8..95e84dda3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/ui/Overflow001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/ui/Overflow001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/ui/Overflow002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/ui/Overflow002Test.cs index 8224c89c4..19f182f10 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/ui/Overflow002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css21/ui/Overflow002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel148Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel148Test.cs index 562f92f5f..0146110d9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel148Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel148Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel149Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel149Test.cs index 08292e154..1a3a5135d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel149Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel149Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel149bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel149bTest.cs index 6630cbc7c..c32a541f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel149bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel149bTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel150Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel150Test.cs index 98e1822e6..22e1c6555 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel150Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel150Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel151Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel151Test.cs index 422170503..270616337 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel151Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel151Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel152Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel152Test.cs index 4823fce90..02a6349fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel152Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel152Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel153Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel153Test.cs index ef33d2989..2067f62fc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel153Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel153Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27Test.cs index 76a9ef543..f2b9dfea3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27aTest.cs index b3cc092c2..4644cd6ac 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27aTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27bTest.cs index cf16a95e3..8d9218599 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel27bTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3ModselD1bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3ModselD1bTest.cs index 1c71e7ad2..7613e3e38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3ModselD1bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3ModselD1bTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.cs index 6297b751a..da6614759 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_144_NegatedEnabledDisabledPseudoClassesTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.cs index 20c2b7f08..5546a49ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_14d_NegatedMoreThanOneClassSelectorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.cs index d4383a36c..d346594bd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_14e_NegatedMoreThanOneClassSelectorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_178_ParsingNotAndPseudoElementsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_178_ParsingNotAndPseudoElementsTest.cs index 53c113352..79b119d46 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_178_ParsingNotAndPseudoElementsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_178_ParsingNotAndPseudoElementsTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.cs index c85324684..1abf97533 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184d_NegatedEndsWithAttributeSelectorWithEmptyValueTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.cs index 04bcd1629..69f24a0cd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184e_NegatedStartsWithAttributeSelectorWithEmptyValueTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.cs index a1f5f4ff7..944e24d9b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_184f_NegatedContainsAttributeSelectorWithEmptyValueTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.cs index 55cc1ce85..373f73dbb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_54_NegatedSubstringMatchingAttributeSelectorOnBeginningTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.cs index e84b87933..0c346ea05 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_55_NegatedSubstringMatchingAttributeSelectorOnEndTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.cs index 45bf333cb..fe0658bba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_56_NegatedSubstringMatchingAttributeSelectorOnMiddleTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_59_NegatedClassSelectorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_59_NegatedClassSelectorTest.cs index dd94a4533..f3869c216 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_59_NegatedClassSelectorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_59_NegatedClassSelectorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_60_NegatedIdSelectorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_60_NegatedIdSelectorTest.cs index 00f4e8f81..4493cfc77 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_60_NegatedIdSelectorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_60_NegatedIdSelectorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_61_NegatedLinkPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_61_NegatedLinkPseudoClassTest.cs index 9f10884af..fe2192bc2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_61_NegatedLinkPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_61_NegatedLinkPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_62_NegatedVisitedPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_62_NegatedVisitedPseudoClassTest.cs index 51e697def..c0f6e89f5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_62_NegatedVisitedPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_62_NegatedVisitedPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_63_NegatedHoverPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_63_NegatedHoverPseudoClassTest.cs index f539a39fd..9169cb4f3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_63_NegatedHoverPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_63_NegatedHoverPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_64_NegatedActivePseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_64_NegatedActivePseudoClassTest.cs index 456ab920e..8e4555ed1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_64_NegatedActivePseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_64_NegatedActivePseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_65_NegatedFocusPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_65_NegatedFocusPseudoClassTest.cs index 0e0f97d3f..04709d429 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_65_NegatedFocusPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_65_NegatedFocusPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_66_NegatedTargetPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_66_NegatedTargetPseudoClassTest.cs index 9455284cc..17b73b0db 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_66_NegatedTargetPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_66_NegatedTargetPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_66b_NegatedTargetPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_66b_NegatedTargetPseudoClassTest.cs index a28629dfe..b7a22f02a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_66b_NegatedTargetPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_66b_NegatedTargetPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_67_NegatedLangPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_67_NegatedLangPseudoClassTest.cs index 25ba07cdb..766658796 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_67_NegatedLangPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_67_NegatedLangPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_68_NegatedEnabledPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_68_NegatedEnabledPseudoClassTest.cs index dfbeb9b4c..580a92784 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_68_NegatedEnabledPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_68_NegatedEnabledPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_69_NegatedDisabledPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_69_NegatedDisabledPseudoClassTest.cs index d7e06b7ec..90f89c461 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_69_NegatedDisabledPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_69_NegatedDisabledPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_70_NegatedCheckedPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_70_NegatedCheckedPseudoClassTest.cs index cb1d49ef5..5ea7ccfae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_70_NegatedCheckedPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_70_NegatedCheckedPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_72_NegatedRootPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_72_NegatedRootPseudoClassTest.cs index 1fd54f28f..a31f88f29 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_72_NegatedRootPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_72_NegatedRootPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_72b_NegatedRootPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_72b_NegatedRootPseudoClassTest.cs index b34e4f990..4d4ba06ca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_72b_NegatedRootPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_72b_NegatedRootPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_73_NegatedNthChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_73_NegatedNthChildPseudoClassTest.cs index 4612a1975..f745bb896 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_73_NegatedNthChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_73_NegatedNthChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_73b_NegatedNthChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_73b_NegatedNthChildPseudoClassTest.cs index c07fec575..151babc6e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_73b_NegatedNthChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_73b_NegatedNthChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_74_NegatedNthLastChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_74_NegatedNthLastChildPseudoClassTest.cs index 0ee218399..aed31350f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_74_NegatedNthLastChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_74_NegatedNthLastChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.cs index 37b19ae1d..4ecc1aeb9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_74b_NegatedNthLastChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_75_NegatedNthOfTypePseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_75_NegatedNthOfTypePseudoClassTest.cs index 6cc3e0cd8..11f12bca0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_75_NegatedNthOfTypePseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_75_NegatedNthOfTypePseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.cs index 0032d1fcc..2d6f73dc3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_76_NegatedNthLastOfTypePseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.cs index 105b1ed83..22f2feff6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_76b_NegatedNthLastOfTypePseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_77_NegatedFirstChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_77_NegatedFirstChildPseudoClassTest.cs index 1eab8644c..d65dae972 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_77_NegatedFirstChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_77_NegatedFirstChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_77b_NegatedFirstChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_77b_NegatedFirstChildPseudoClassTest.cs index f50549d83..796a0f457 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_77b_NegatedFirstChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_77b_NegatedFirstChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_78_NegatedLastChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_78_NegatedLastChildPseudoClassTest.cs index bf76283a0..2abb30580 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_78_NegatedLastChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_78_NegatedLastChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_78b_NegatedLastChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_78b_NegatedLastChildPseudoClassTest.cs index 5f620ccad..2f2e180fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_78b_NegatedLastChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_78b_NegatedLastChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.cs index 72a0abedb..656c8ca2b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_79_NegatedFirstOfTypePseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_80_NegatedLastOfTypePseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_80_NegatedLastOfTypePseudoClassTest.cs index eb5e2e8ed..089d19cc5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_80_NegatedLastOfTypePseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_80_NegatedLastOfTypePseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_81_NegatedOnlyChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_81_NegatedOnlyChildPseudoClassTest.cs index 342efc737..3828a0ce5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_81_NegatedOnlyChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_81_NegatedOnlyChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.cs index ce25aa687..4194ca97f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_81b_NegatedOnlyChildPseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.cs index 807d5f4b4..fbf2a8c06 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_82_NegatedOnlyOfTypePseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.cs index f3e7889f8..93ae90320 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_82b_NegatedOnlyOfTypePseudoClassTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.cs index 88a1372b0..c80005296 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_83_NegationPseudoClassCannotBeAnArgumentOfItselfTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.cs index 67745f8d3..a5b06e802 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/Css3Modsel_d1_NegatedDynamicHandlingOfEmptyTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/RootSiblingsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/RootSiblingsTest.cs index effc1a03d..44f4c09b4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/RootSiblingsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/RootSiblingsTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/SelectorsEmpty001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/SelectorsEmpty001Test.cs index 31ca77250..abc40f7f6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/SelectorsEmpty001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css3_selectors/SelectorsEmpty001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Background334Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Background334Test.cs index ed1834f0d..63de465ba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Background334Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Background334Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundAttachment353Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundAttachment353Test.cs index 0e22024a9..a829a6d35 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundAttachment353Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundAttachment353Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip002Test.cs index 50e690abe..7672427a4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip003Test.cs index 7c7c04431..ccaa96b47 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip004Test.cs index 6d40e505a..88d09bb26 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip005Test.cs index b907e7977..0d085f94c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip006Test.cs index 1fb4c71e9..011ef9430 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip007Test.cs index 153c7c44b..fca5dc652 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip008Test.cs index 8c93ab58f..09bd926a7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip009Test.cs index 834210f8e..40f584f88 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip010Test.cs index 96c80643e..11a7c8789 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClip010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipColorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipColorTest.cs index cb51486bb..a560e0d13 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipColorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipColorTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBox001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBox001Test.cs index cf8c36d6d..86c361a09 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBox001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBox001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBoxTest.cs index a560d629c..66f282df7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipContentBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipPaddingBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipPaddingBoxTest.cs index daf87eafc..31b1071eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipPaddingBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipPaddingBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipRootTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipRootTest.cs index fa1dc9ca6..9ace3a4ac 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipRootTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundClipRootTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation001Test.cs index fe658a24b..0a626608c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation002Test.cs index c9c956cff..eb6878ca5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation004Test.cs index fb1db33da..db78307d2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation005Test.cs index 25c0473c2..07d5b5fa5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBodyPropagation005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBorderBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBorderBoxTest.cs index 3d6422f47..5fac0c380 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBorderBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorBorderBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorClipTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorClipTest.cs index ff14a4bf5..3d77fa6a3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorClipTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorClipTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorPaddingBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorPaddingBoxTest.cs index bf00c1a46..2ee39774e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorPaddingBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorPaddingBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorRootPropagation001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorRootPropagation001Test.cs index 69d68ccc2..3574198af 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorRootPropagation001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundColorRootPropagation001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundGradientSubpixelFillsAreaTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundGradientSubpixelFillsAreaTest.cs index e93dcdbb7..28137d285 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundGradientSubpixelFillsAreaTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundGradientSubpixelFillsAreaTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage001Test.cs index d93cb651a..226f1bd79 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage002Test.cs index 01416649c..3336082fc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage003Test.cs index 2be88663e..822ea324b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage004Test.cs index 7647fa324..a63c4b81e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage005Test.cs index 74543eac1..f408ac563 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage006Test.cs index 7d4d4bce7..30d1ffa0e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage007Test.cs index 179586189..e7c620db0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImage007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredTest.cs index 0c5b235b8..8b29f88ea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredWithBorderRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredWithBorderRadiusTest.cs index 88a9bc353..6683fb34d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredWithBorderRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCenteredWithBorderRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCoverZoomed1Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCoverZoomed1Test.cs index 58a75038e..3f74e171f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCoverZoomed1Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageCoverZoomed1Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageFirstLetterTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageFirstLetterTest.cs index 76e5fd3b4..367e291f9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageFirstLetterTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageFirstLetterTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageLargeWithAutoTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageLargeWithAutoTest.cs index d5d8f8993..bf9764e83 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageLargeWithAutoTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageLargeWithAutoTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageTableCellsZoomedTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageTableCellsZoomedTest.cs index a0ca5fc00..530554838 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageTableCellsZoomedTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundImageTableCellsZoomedTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundMarginIframeRootTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundMarginIframeRootTest.cs index f6bdc455d..f1cf71ec2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundMarginIframeRootTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundMarginIframeRootTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin002Test.cs index e874e5cd2..616b86c5b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin003Test.cs index bd7a50d96..54affd543 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin004Test.cs index 6a50a076a..517bba93f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin005Test.cs index ad2d8a55a..079e63673 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin007Test.cs index 12367a268..c53120c28 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin008Test.cs index 43274a410..1071449db 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundOrigin008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPaintOrder001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPaintOrder001Test.cs index 92b701a07..71d2afa8c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPaintOrder001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPaintOrder001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPositionThreeFourValuesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPositionThreeFourValuesTest.cs index 710b0ebe1..079a66b67 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPositionThreeFourValuesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPositionThreeFourValuesTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPropertiesGreaterThanImagesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPropertiesGreaterThanImagesTest.cs index 06de38d1e..170538b65 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPropertiesGreaterThanImagesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundPropertiesGreaterThanImagesTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatBpaceBontentBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatBpaceBontentBoxTest.cs index 61e0fede1..f33e00d9b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatBpaceBontentBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatBpaceBontentBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound001Test.cs index 6427cdcff..0cc8cd422 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound002Test.cs index ad1349091..2f1898c69 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRepeatRound002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRoundedImageClipTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRoundedImageClipTest.cs index 1e6c92098..8982a3d19 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRoundedImageClipTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundRoundedImageClipTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize002Test.cs index 9c168385f..ecc047ea7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize003Test.cs index 79ad761f8..670df7f11 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize005Test.cs index 75ae7f3fb..59979e99e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize006Test.cs index 2b42eeb77..5ea649247 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize007Test.cs index d07f4f172..00c2b90e0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize008Test.cs index 8c2c26e07..38be471c4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize009Test.cs index c2f613ed4..53aeb38ce 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize010Test.cs index 574f3249e..766cc5f26 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize011Test.cs index be07d7d00..e707e5549 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize011Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize012Test.cs index 8a83fcf8f..e85afed9a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize013Test.cs index bc6353f11..18be7bcf0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize014Test.cs index c0c6cb304..8accb51cb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize015Test.cs index e7629fa1b..dfb14557c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize016Test.cs index 2f5446800..b489e05a0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize017Test.cs index eeba28194..363109044 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize018Test.cs index ed9e3b3e3..cebe6676c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize019Test.cs index daffffe80..b1107e0ca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize020Test.cs index d95bcb423..79b0f7b5a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize021Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize021Test.cs index a2b796746..4e612dfb3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize021Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize021Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize022Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize022Test.cs index 04f0f68b1..ce5ab81d5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize022Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize022Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize023Test.cs index b2d038a0b..c741de57f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize023Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize024Test.cs index f50ddfa58..725a5a821 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize024Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize025Test.cs index 7aff47b17..92f739440 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize025Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize026Test.cs index 771818880..192f99add 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize026Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize027Test.cs index 73be4d1b7..97be056f9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize027Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize028Test.cs index f8383d21a..4baa73df1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize028Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize029Test.cs index a8197793a..b41390ab4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize029Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize030Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize030Test.cs index 94740d32f..d995caa95 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize030Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize030Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize031Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize031Test.cs index b351c9b72..935e3c9aa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize031Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize031Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize032Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize032Test.cs index 3d4cff14e..acf065abe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize032Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize032Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize033Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize033Test.cs index a41a0812c..25b76343e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize033Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize033Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize034Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize034Test.cs index daacfd7a4..a24bdec41 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize034Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSize034Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAppliesToBlockTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAppliesToBlockTest.cs index 53bd69896..8b857693f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAppliesToBlockTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAppliesToBlockTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAspectRatioTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAspectRatioTest.cs index 6eef3e349..4dbc4cf08 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAspectRatioTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeAspectRatioTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain001Test.cs index 9ed854d5c..3a27fcfec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain002Test.cs index f68e45d34..735cf86ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeContain002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover001Test.cs index 109731a81..8c4c9ed4b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover002Test.cs index 98379b3c5..3b886ffa4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover003Test.cs index 2cae05deb..da67c4c9e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeCover003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeOneValue1x1ImageTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeOneValue1x1ImageTest.cs index da9f84399..79f1e9f31 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeOneValue1x1ImageTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeOneValue1x1ImageTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizePercentageRootTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizePercentageRootTest.cs index 75adde586..64df58c6b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizePercentageRootTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizePercentageRootTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeWithNegativeValueTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeWithNegativeValueTest.cs index 35a8e2333..1432878ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeWithNegativeValueTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BackgroundSizeWithNegativeValueTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgClipPadBoxWithBRTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgClipPadBoxWithBRTest.cs index 086fad8aa..995e3896e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgClipPadBoxWithBRTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgClipPadBoxWithBRTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgColorAppliedToRIETest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgColorAppliedToRIETest.cs index 72636707f..5d1a9689b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgColorAppliedToRIETest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgColorAppliedToRIETest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgPNegativePercentageComparisonTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgPNegativePercentageComparisonTest.cs index c44feeacd..09dad03cc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgPNegativePercentageComparisonTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgPNegativePercentageComparisonTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgPSubpixelAtBorderTentativeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgPSubpixelAtBorderTentativeTest.cs index dcd533424..721a49cc3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgPSubpixelAtBorderTentativeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BgPSubpixelAtBorderTentativeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius004Test.cs index f9c615b95..2aa7f8a06 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius005Test.cs index 2c5da15b0..0d03440d4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomLeftRadius005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius004Test.cs index 6f83dc611..4bbc150bb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius005Test.cs index 3e5b6e783..9c463888c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderBottomRightRadius005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderColorTransparentTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderColorTransparentTest.cs index 64d720f06..650ffc656 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderColorTransparentTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderColorTransparentTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage017Test.cs index 2296d4fec..f04ce612a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage018Test.cs index 816674f71..5b197fdf9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage019Test.cs index d7220e613..dc333b7cb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage020Test.cs index 0c695b9fc..a23f4ced2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage10Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage10Test.cs index 38ccd8686..998ccac8d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage10Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage10Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage11Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage11Test.cs index 9d6d338de..1050854b9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage11Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage11Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage12Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage12Test.cs index e7fbb5311..c3a105e26 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage12Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage12Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage13Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage13Test.cs index 034a3b9af..7a0b16180 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage13Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage13Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage14Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage14Test.cs index 638a8ff5e..6a4ad11da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage14Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage14Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage15Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage15Test.cs index 98695c6ee..b7bcd7dab 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage15Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage15Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage16Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage16Test.cs index 84aa03a4c..b9655dd50 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage16Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage16Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage1Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage1Test.cs index caf249b4d..b791add38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage1Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage1Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage2Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage2Test.cs index 035d8a73c..08a9c4343 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage2Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage2Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage3Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage3Test.cs index 3c0eae1d1..919f4f3b1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage3Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage3Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage4Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage4Test.cs index 324fa5031..ee3de7242 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage4Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage4Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage6RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage6RefTest.cs index 35f34e9c2..f51696c91 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage6RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage6RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage6Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage6Test.cs index 4ad2800f9..6ef999c62 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage6Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage6Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage7Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage7Test.cs index 8a19dccfa..8bc62bbc7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage7Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage7Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage8Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage8Test.cs index 86a6a2e4b..c73433994 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage8Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage8Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage9Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage9Test.cs index bc3fb412b..8b758cc67 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage9Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImage9Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageCalcRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageCalcRefTest.cs index d1b853784..bcd6a9f0f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageCalcRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageCalcRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageCalcTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageCalcTest.cs index 2ecd7e7fa..e38f4f241 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageCalcTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageCalcTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageImageType003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageImageType003Test.cs index 5ca4fabd0..e2bee59a9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageImageType003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageImageType003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset001Test.cs index 0784bff99..df9166190 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset002Test.cs index be45c0fc4..d71d06ed6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003RefTest.cs index 3468ba1b7..2b8abbed2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003Test.cs index 68c06b5b7..ac73a6dd2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageOutset003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRepeat005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRepeat005Test.cs index 009eb69cb..40578a45c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRepeat005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRepeat005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRepeatRoundTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRepeatRoundTest.cs index e260ab10f..6c6d9f38d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRepeatRoundTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRepeatRoundTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRoundAndStretchTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRoundAndStretchTest.cs index 7f039db57..c9cdd46f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRoundAndStretchTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageRoundAndStretchTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice001Test.cs index 9a5b106d7..16bd1ad22 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice002Test.cs index ac6bd4f4a..f81404f3a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice003Test.cs index e11519335..c290fcf01 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice004Test.cs index b1ec074e9..70c62bb14 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice005Test.cs index c54f6219d..4ed9fbd86 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice006Test.cs index c79206644..9b836562f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice007Test.cs index 71ff8292b..5de81b344 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlice007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlicePercentageTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlicePercentageTest.cs index a6031213d..38ff8939b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlicePercentageTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSlicePercentageTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSpace001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSpace001Test.cs index 471ac8056..dc443249f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSpace001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageSpace001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth001Test.cs index 9a75c282c..503aaaa71 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth002Test.cs index 4b42cad9e..26e8dac8c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth003Test.cs index 2312e358f..f7e6584b3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth004Test.cs index c2471e0d3..858e36061 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth005Test.cs index d31a47d2a..ac3d73fa6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth006Test.cs index 27a26eaef..4bc8144e4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth007Test.cs index a34f6c822..9a7779cd5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008RefTest.cs index 74e2a9c0b..a01bdaa6b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008Test.cs index 1e7049fa1..a1217fec7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImageWidth008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImagesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImagesTest.cs index ff995707d..9d96bc096 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImagesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderImagesTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius001RefTest.cs index d78dbbe6e..56e55cb95 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius001Test.cs index 1fe5e30b7..6956f437d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius002RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius002RefTest.cs index ce0d13dde..c3eaca6ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius002RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius002RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius002Test.cs index 4d2a0e85d..c64c1357b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius003RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius003RefTest.cs index 956d0f7c9..d71d84f26 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius003RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius003RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius003Test.cs index 10f5ca622..b927d3b2a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius004RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius004RefTest.cs index c046e6ff5..e4ea0aa84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius004RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius004RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius004Test.cs index b019cc3e6..e6f83b1bc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius005RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius005RefTest.cs index 1231e7f49..2bc59da23 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius005RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius005RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius005Test.cs index bc3e47c04..145ffd854 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius006RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius006RefTest.cs index 1f3624782..e63179882 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius006RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius006RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius006Test.cs index 6d41fa012..99636e420 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius007RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius007RefTest.cs index e38847851..f111c2950 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius007RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius007RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius007Test.cs index 2d2cd9069..19e7ad4d8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius008Test.cs index 3b7fb7633..af6ff729c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius009RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius009RefTest.cs index f66c18867..e8da9173c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius009RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius009RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius009Test.cs index e65d54b79..8f7acbb01 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius010RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius010RefTest.cs index 4774671f9..37edcf1d3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius010RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius010RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius010Test.cs index 70a767352..e87e2079e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius011RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius011RefTest.cs index 4ace9112b..ccccb2e1e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius011RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius011RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius011Test.cs index a3253fac7..471c5f3eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadius011Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClip002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClip002Test.cs index 53a6d5fc4..e9b57db5c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClip002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClip002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClipping002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClipping002Test.cs index b9073eadc..a4a9e9c0f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClipping002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClipping002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClippingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClippingTest.cs index c7bcf19f9..7a6efcb0d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClippingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusClippingTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusDynamicFromNoRadiusRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusDynamicFromNoRadiusRefTest.cs index d6f558421..45376a4e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusDynamicFromNoRadiusRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusDynamicFromNoRadiusRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusHorizontalValueIsZeroTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusHorizontalValueIsZeroTest.cs index a05936f4a..3e19ef112 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusHorizontalValueIsZeroTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusHorizontalValueIsZeroTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusInitialValue001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusInitialValue001Test.cs index 755b5d69f..fa772972b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusInitialValue001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusInitialValue001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusOverflowHiddenTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusOverflowHiddenTest.cs index 4da6e1838..b91a55937 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusOverflowHiddenTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusOverflowHiddenTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusShorthand002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusShorthand002Test.cs index 8c5c5f266..b56cad8c8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusShorthand002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusShorthand002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusStyle005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusStyle005Test.cs index d2ab7c1a9..ad26f4a55 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusStyle005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderRadiusStyle005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004RefTest.cs index cc54f746e..e782f7d9f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004Test.cs index dc977d2e0..f5d711237 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005RefTest.cs index 66dee189d..54eda4259 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005Test.cs index a4df1e33a..9e8e992a0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopLeftRadius005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004RefTest.cs index 23e37072e..e7cc69bcd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004Test.cs index d726d299b..aaffe7ec2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005RefTest.cs index 5a5fec3f3..62675dd84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005Test.cs index f83e3f3ef..8e6b42e08 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderTopRightRadius005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderWidthPixelSnapping001BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderWidthPixelSnapping001BTest.cs index bde296ec3..f51801fdb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderWidthPixelSnapping001BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BorderWidthPixelSnapping001BTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadOutSpreadWithoutBRTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadOutSpreadWithoutBRTest.cs index fa8345b6b..192d51988 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadOutSpreadWithoutBRTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadOutSpreadWithoutBRTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow001Test.cs index c34c7624c..de09f6ff3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow002Test.cs index 5237d9f07..48f98a129 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow003Test.cs index 8975fbaba..7071973e7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow004Test.cs index adec0ce5c..0fec39f62 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow005Test.cs index 600633963..d5161329c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadow005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowBodyTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowBodyTest.cs index 9ad38204a..3b980b0e5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowBodyTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowBodyTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetSpreadWithoutBorderRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetSpreadWithoutBorderRadiusTest.cs index e2f80acf6..91dfba048 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetSpreadWithoutBorderRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetSpreadWithoutBorderRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetWithoutBorderRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetWithoutBorderRadiusTest.cs index 948f1d3da..66dda50fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetWithoutBorderRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowInsetWithoutBorderRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOutsetWithoutBorderRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOutsetWithoutBorderRadiusTest.cs index 5a3e4e121..da016797a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOutsetWithoutBorderRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOutsetWithoutBorderRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping001Test.cs index 548105af6..23ecd5496 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping002Test.cs index 655f85692..ccc5138fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping003Test.cs index 0baf78a46..3e27030fc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping004Test.cs index ce43faab1..2ae913d58 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowOverlapping004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowTableBorderCollapse001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowTableBorderCollapse001Test.cs index 51963f7ab..e1afe4e1f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowTableBorderCollapse001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/BoxShadowTableBorderCollapse001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/ChildMoveRevealsParentBackgroundRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/ChildMoveRevealsParentBackgroundRefTest.cs index 3352df4d0..f5a637311 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/ChildMoveRevealsParentBackgroundRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/ChildMoveRevealsParentBackgroundRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/ColorBehindImagesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/ColorBehindImagesTest.cs index 1f0edf262..33fc5ce82 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/ColorBehindImagesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/ColorBehindImagesTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipBorderBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipBorderBoxTest.cs index b4236a7a8..354c9eee5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipBorderBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipBorderBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipContentBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipContentBoxTest.cs index e810cef89..4a9606072 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipContentBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipContentBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipPaddingBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipPaddingBoxTest.cs index 1337451a8..8907f0b86 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipPaddingBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipPaddingBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipTest.cs index 3d5f3072b..84531cec9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundClipTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginBorderBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginBorderBoxTest.cs index efe73e28c..ab204869d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginBorderBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginBorderBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginContentBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginContentBoxTest.cs index 1ff909f89..bd8ebbc1a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginContentBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginContentBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginPaddingBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginPaddingBoxTest.cs index 3fa328f1e..210858e4a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginPaddingBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundOriginPaddingBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSize001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSize001Test.cs index 8b3bfc1ac..11311bc58 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSize001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSize001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeContainTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeContainTest.cs index d12085394..056c80613 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeContainTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeContainTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeTest.cs index 3afa46acc..2ed234333 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BackgroundSizeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatRepeatTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatRepeatTest.cs index 5e556cbb3..1c71e5381 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatRepeatTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatRepeatTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatStretchTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatStretchTest.cs index 5fd214adb..a35a8b898 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatStretchTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageRepeatStretchTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageSourceTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageSourceTest.cs index 11860cf3c..c4ebeffb5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageSourceTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BorderImageSourceTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BoxShadowTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BoxShadowTest.cs index 8ec730991..3fc2ccc25 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BoxShadowTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/Css3BoxShadowTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/CssBorderRadius001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/CssBorderRadius001Test.cs index 2ff8470c2..ea95bf658 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/CssBorderRadius001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/CssBorderRadius001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/FirstLetterSpaceNotSelectedTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/FirstLetterSpaceNotSelectedTest.cs index 9459088c3..30fa98629 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/FirstLetterSpaceNotSelectedTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/FirstLetterSpaceNotSelectedTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollRefTest.cs index 9856cc456..2acf49123 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollTest.cs index 843a5acf5..0bb9666c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowScrollTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowStackingContextScrollTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowStackingContextScrollTest.cs index 4afd408d8..0eff007b3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowStackingContextScrollTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/InsetBoxShadowStackingContextScrollTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/NoneAsImageLayerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/NoneAsImageLayerTest.cs index 89246f3d9..ba629c29e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/NoneAsImageLayerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/NoneAsImageLayerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/OrderOfImagesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/OrderOfImagesTest.cs index c4b7f0eef..4b8239683 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/OrderOfImagesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/OrderOfImagesTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/SubpixelRepeatNoRepeatMixTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/SubpixelRepeatNoRepeatMixTest.cs index 33fcc589d..63ec1a5ce 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/SubpixelRepeatNoRepeatMixTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/SubpixelRepeatNoRepeatMixTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingBottomTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingBottomTest.cs index a1d35c658..49d76c0da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingBottomTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingBottomTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingLeftTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingLeftTest.cs index b2cf74516..6c840534e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingLeftTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingLeftTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingRightTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingRightTest.cs index a7d2949f7..a4be15905 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingRightTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandMissingRightTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandTest.cs index 5e2eeed92..e799d858b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorShorthandTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorTest.cs index fe992ebb5..55cd0420a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderColorTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleDoubleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleDoubleTest.cs index f8f9132e6..7f566be7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleDoubleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleDoubleTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingBottomTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingBottomTest.cs index 6af3463b3..aa9123291 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingBottomTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingBottomTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingLeftTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingLeftTest.cs index 62d1541e6..18975eba0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingLeftTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandMissingLeftTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandTest.cs index b03fe7743..09d67aac8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleShorthandTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleTest.cs index 470cc52e7..cc92c62c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleValuesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleValuesTest.cs index e7fdf2dbf..ae911aca7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleValuesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfBorderStyleValuesTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfReftestBorderRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfReftestBorderRadiusTest.cs index 34cff8505..9ed624916 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfReftestBorderRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/TtwfReftestBorderRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxTest.cs index 322cce61f..0fcd71481 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithPositionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithPositionTest.cs index a96898ac1..fd071fd21 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithPositionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithPositionTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithRadiusTest.cs index d4d4ea366..504c1f63c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithSizeTest.cs index c33494cbe..dd7d46413 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipBorderBoxWithSizeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxTest.cs index c364f1390..50cbe5348 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithPositionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithPositionTest.cs index 41077a5b4..3a38e1355 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithPositionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithPositionTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithRadiusTest.cs index 0f64a0791..2a6fb995a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithSizeTest.cs index cacafb2f9..5257d17b9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipContentBoxWithSizeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxTest.cs index f53d12e56..8fd0c930d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithPositionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithPositionTest.cs index be48487aa..031128efa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithPositionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithPositionTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithRadiusTest.cs index 81af1962c..dc8814cd4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithSizeTest.cs index 1af2b2b4a..72b5d208d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipPaddingBoxWithSizeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipRoundedCornerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipRoundedCornerTest.cs index 1d5e6083b..8bd727051 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipRoundedCornerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_clip/ClipRoundedCornerTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxTest.cs index 26c6ad662..62c28f6b0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithPositionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithPositionTest.cs index b0eba54b9..7632fe69e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithPositionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithPositionTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithRadiusTest.cs index 808baacb9..6770398aa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithSizeTest.cs index 1f9069bb1..7c48d3d7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginBorderBoxWithSizeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxTest.cs index f565c21bd..c605f28b5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithPositionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithPositionTest.cs index 83a7da3fe..cbf502ba1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithPositionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithPositionTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithRadiusTest.cs index 3f950c658..40b32a1b8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithSizeTest.cs index aa98ddb66..e4d24b064 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginContentBoxWithSizeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxTest.cs index e0c72c136..63c07826c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithPositionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithPositionTest.cs index 94d88667f..82f60e36e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithPositionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithPositionTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithRadiusTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithRadiusTest.cs index 99b245426..1fd05a005 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithRadiusTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithRadiusTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithSizeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithSizeTest.cs index 14f58c389..10dda9604 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithSizeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_origin/OriginPaddingBoxWithSizeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_position/SubpixelPositionCenterTentativeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_position/SubpixelPositionCenterTentativeTest.cs index 7a2662beb..9500cd0ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_position/SubpixelPositionCenterTentativeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_position/SubpixelPositionCenterTentativeTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatNoRepeatTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatNoRepeatTest.cs index 822402f19..e78a8f9ae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatNoRepeatTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatNoRepeatTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatXTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatXTest.cs index 0c7ea6721..5b929f115 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatXTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatXTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatYTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatYTest.cs index ff25d8e22..876ab32f2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatYTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRepeatYTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundRoundUpTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundRoundUpTest.cs index a31a5d66c..bd7706540 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundRoundUpTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundRoundUpTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundTest.cs index e332890e9..0dea328c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatRoundTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatSpaceTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatSpaceTest.cs index 5d886c796..299e20672 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatSpaceTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/BackgroundRepeatSpaceTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/GradientRepeatSpacedWithBordersTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/GradientRepeatSpacedWithBordersTest.cs index f5d87efae..95ea80951 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/GradientRepeatSpacedWithBordersTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/background_repeat/GradientRepeatSpacedWithBordersTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC1RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC1RefTest.cs index d1b5629a6..459a14985 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC1RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC1RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC3RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC3RefTest.cs index 132849adf..cc699dc83 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC3RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC3RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC4RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC4RefTest.cs index 7e2bc7912..ca99fda27 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC4RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC4RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC6RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC6RefTest.cs index ab5970202..cd567c748 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC6RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipC6RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI1RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI1RefTest.cs index 52bfbb1c9..a3f69bd96 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI1RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI1RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI3RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI3RefTest.cs index ce8f58c60..570870c50 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI3RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI3RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI4RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI4RefTest.cs index e20b4b698..8927f53e9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI4RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI4RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI6RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI6RefTest.cs index bf60340d7..8c78cf0e9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI6RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLClipI6RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos2RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos2RefTest.cs index 85405e299..e08e7f57b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos2RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos2RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos3RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos3RefTest.cs index 70f99b6d0..51047bd38 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos3RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos3RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos4RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos4RefTest.cs index 446679fa5..6308a4ef4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos4RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos4RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos5RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos5RefTest.cs index 1e5a4da50..2e28810b5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos5RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttLPos5RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttScrollPos1RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttScrollPos1RefTest.cs index d6d93608a..f455406c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttScrollPos1RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_att_local/AttScrollPos1RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeContainTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeContainTest.cs index 31c53d612..b9feed032 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeContainTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeContainTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain001Test.cs index 70164148e..5c0cc00d9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain002Test.cs index 8a4cd03f3..b5ba55106 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverContain002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverSvgTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverSvgTest.cs index 934d9878f..474a3334c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverSvgTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverSvgTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverTest.cs index f7900507d..5b972c82f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeCoverTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroColorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroColorTest.cs index 889de2de4..e6a2fd9c7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroColorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroColorTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroGradientTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroGradientTest.cs index c9dd4a455..1392399b6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroGradientTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroGradientTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroPngTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroPngTest.cs index a3bdd22dd..774ac1ea6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroPngTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroPngTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroSvgTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroSvgTest.cs index b524a17f8..28adfdd53 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroSvgTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/BackgroundSizeNearZeroSvgTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector001Test.cs index 00f7fba36..edb4d690c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector002Test.cs index d9b73e7b6..2b2b12625 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector003Test.cs index 717949294..a58e60501 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector004Test.cs index a42aad853..ac7169063 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector005Test.cs index 68015d908..e1006bcf8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector006Test.cs index c46c37260..71ef29684 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector007Test.cs index 0669562e9..824434a51 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector008Test.cs index 603472a27..6ecb23db2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector009Test.cs index 8d0901c73..55c979523 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector010Test.cs index 5663be042..1633420b5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector011Test.cs index b1f320814..5e75f59f5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector011Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector012Test.cs index c97bca584..20a3b0dcd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector013Test.cs index 6ea2d2719..ed28919fe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector013Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector014Test.cs index e37c5c62c..464166185 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector015Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector015Test.cs index 39f326ff4..47f4b4a57 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector015Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector015Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector016Test.cs index 53d908bf1..6830064d9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector017Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector017Test.cs index 6d5d7242f..82727ad52 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector017Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector017Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector018Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector018Test.cs index 36eb8b74b..04cedf318 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector018Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector018Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector019Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector019Test.cs index 5f31cb8c1..7fb4ed519 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector019Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector019Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector020Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector020Test.cs index 9410a7149..4974e06d0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector020Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector020Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector021Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector021Test.cs index 1bef28b64..e8df9e9d6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector021Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector021Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector022Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector022Test.cs index 80317949a..73dd38a96 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector022Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector022Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector023Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector023Test.cs index bcda20072..a92c452eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector023Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector023Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector024Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector024Test.cs index dbf543fb3..e827f43b9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector024Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector024Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector025Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector025Test.cs index bbb18378d..bb26fe158 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector025Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector025Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector026Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector026Test.cs index 24e6864e9..c4ed19117 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector026Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector026Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector027Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector027Test.cs index 58fd0f04c..47def5fae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector027Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector027Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector028Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector028Test.cs index 8cb983000..7b17f974b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector028Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector028Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector029Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector029Test.cs index f39aa0146..ad497f5ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector029Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/BackgroundSizeVector029Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHTest.cs index a08162410..19b02e5ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHVbTest.cs index 93d880216..3a6db9e30 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHTest.cs index 2b76e6b7d..4f40a4b5b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHVbTest.cs index 59f161d21..a75c9a64f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHTest.cs index e0468e1c0..e35bba2e1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHVbTest.cs index b14a20308..51de054e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxNpWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHTest.cs index d81dbd866..900ebbdf4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHVbTest.cs index c91690146..86ef19baf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHTest.cs index d51950586..6bea63813 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHVbTest.cs index 1e8ecd04d..2d81ca183 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHTest.cs index a0e0e576f..40e8a9dd2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHVbTest.cs index 11824a66c..698160084 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxOWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHTest.cs index e084533ad..dd20578f5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHVbTest.cs index 320033eff..382e1d464 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHTest.cs index 9db6cd8a7..47d5459c0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHVbTest.cs index 90e516cee..f8df5cfd2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHTest.cs index c45188b01..b1df40e61 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHVbTest.cs index 9fe3df589..260c6e5ce 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TA32PxPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAOWPHTest.cs index 7c91cb127..0b4380c57 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHTest.cs index e8855dfe0..87bcc36e2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHVbTest.cs index 99d72cf98..680f58577 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHTest.cs index 8ba82d04c..f1fbf1477 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHVbTest.cs index 98b521abe..192a72b11 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHTest.cs index 933e6888d..666473270 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHVbTest.cs index 8c9053689..98f12859d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TAPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConHTest.cs index 17c3377f5..710232c9d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHTest.cs index a530b93c8..e94f0547f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHVbTest.cs index 632adb63f..c0f3f442e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHTest.cs index 4c610f706..0a3c78d22 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHVbTest.cs index 30abcf450..7c8b976bb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHTest.cs index 9e2906709..3c4c6abeb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHVbTest.cs index 4936e4a95..e9343c1c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConNpWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHTest.cs index 2ca2d0813..9299e3f53 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHVbTest.cs index 156282e83..dd19a85e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHTest.cs index 6b5fb48e9..058bba0eb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHVbTest.cs index c8721e865..9aeb3a070 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHTest.cs index c49f8a9b1..ee5a11dfa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHVbTest.cs index 03f5e38db..41802aa04 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConOWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHTest.cs index 2c6d8f587..6843bfce0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHVbTest.cs index 5bb9e53ba..e74df84b1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHTest.cs index 0038cb7ab..63a1d9beb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHVbTest.cs index cf9df990a..bf130f7b4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHTest.cs index 2a03c9a9f..83ddd28f2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHVbTest.cs index d161bd455..82f8aa341 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConWTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConWTest.cs index d84e2385f..74bff1f8e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConWTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TConWTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovHTest.cs index a4fe583bd..9d7922d1c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHCTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHCTest.cs index b7a820e33..e810db8c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHCTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHCTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHTest.cs index fad4a9be7..c26c4ab26 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbCTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbCTest.cs index 2ed1b4bdd..0571b901b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbCTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbCTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbTest.cs index 1fa25772d..68013ca2c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHTest.cs index 1b146acbd..ba2355cb5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHVbTest.cs index 560e5172c..2f7eeafeb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHTest.cs index e0cac7453..99e51bd78 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHVbTest.cs index 331640b10..23c7a0dcd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovNpWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHTest.cs index d4464cb57..0d2b7d95f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHVbTest.cs index 1e972618e..566d5d90f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHTest.cs index 74b3866d4..db1b49795 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHVbTest.cs index 6f12e703d..be821e9cb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHTest.cs index 50ff5e893..2665392ab 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHVbTest.cs index 168417891..a25d1717f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovOWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHTest.cs index b4162873e..0b16e2e6e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHVbTest.cs index d0ffdb1e6..36dceb1aa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHTest.cs index f76b82792..d2ba9d69c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHVbTest.cs index 0f814caf9..570c97bf5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHTest.cs index 53939e056..4dfb0c817 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHVbTest.cs index d44ef1589..2896b8914 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovWTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovWTest.cs index c8e92d550..b08d89e8a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovWTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/TCovWTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHTest.cs index 3c9f160bc..123cc1237 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHVbTest.cs index 9bbf9da38..9fe71b62a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHTest.cs index d71533b85..50ee142bb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHVbTest.cs index 4bb56e43d..a737658de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHTest.cs index e0309d2e8..f6b47678c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHVbTest.cs index a9429753d..bc4e05796 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxANpWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHTest.cs index 38b3e8fc9..a5844ebf1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHVbTest.cs index e151680a3..c49b6f06b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHTest.cs index ee1bda3e0..b407f3b09 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHVbTest.cs index ae6f4a38a..55a9fc8dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHTest.cs index 140cf5ee0..637ea0d9f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHVbTest.cs index 44160bf4e..d5f20f8f1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAOWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHTest.cs index 87bf3179c..15e8a94fe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHVbTest.cs index 41305de5c..36a323b8f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHTest.cs index 7f7e655c0..949a8143e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHVbTest.cs index afc5094ed..d4446a263 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHTest.cs index 705af262d..a2b9e158d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHVbTest.cs index 2b7119427..c4b59abb1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/Wi12PxAPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHTest.cs index 737867411..b7d37bb31 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHVbTest.cs index 405cac919..277726c1f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHTest.cs index af673bc84..8f6500590 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHVbTest.cs index 8bfb0fa53..e6bf8e62b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHTest.cs index bc744028c..f2131e13d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHVbTest.cs index a48ea46c5..8cea7973c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxNpWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHTest.cs index 101c8b1db..764db260f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHVbTest.cs index 66b582110..dcf7dc874 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHTest.cs index 0915958b5..6336257c3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHVbTest.cs index fa9103f11..f2abdf639 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHTest.cs index 05b655d8a..621327ad8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHVbTest.cs index acf861708..591185f54 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxOWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHTest.cs index b0eb9504d..84a2f2467 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHVbTest.cs index 136817c77..135ab5f14 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHTest.cs index aa6eb6b3c..681008b9e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHVbTest.cs index 4fb59b27e..c9a312d8e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHTest.cs index 5d11caf8c..85f5627c5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHVbTest.cs index e53384343..f2e263fb5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiA32PxPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHTest.cs index 55416ba4a..9f6bab68b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHVbTest.cs index b53889780..c10f8efb3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHTest.cs index 1125493c4..a1a152c49 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHVbTest.cs index 1fc8e5067..c4ae830e3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHTest.cs index 9d2db8d88..940f8ce9e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHVbTest.cs index 1012a1df8..73ed54880 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiANpWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHTest.cs index e5d19da6c..b86e618bd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHVbTest.cs index 8f4480513..6bf01a5be 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHTest.cs index 5b753579c..899e4d448 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHVbTest.cs index 867a79ace..48111a838 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHTest.cs index ba0ae9ad6..fc6b543b0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHVbTest.cs index d5c05c487..1a3df8f28 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAOWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHTest.cs index 767393bb7..21c346ac1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHVbTest.cs index b4fa7ffd2..36213a984 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHTest.cs index 48e1b6abc..150282cc2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHVbTest.cs index bf431f14f..3ad3e4dd3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHTest.cs index e18058f1b..00c2b4f2a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHVbTest.cs index 349afaddc..e9de6c993 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiAPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConHTest.cs index 10214bca4..f97e40b73 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHTest.cs index 18fce5113..283a381df 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHVbTest.cs index 2fc1b98be..2c59ba4a4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHTest.cs index 60f633ca3..ffce7f2fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHVbTest.cs index bd6d2dab4..820ec9852 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHTest.cs index 95b428655..5376b78b8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHVbTest.cs index e3109c0a7..c725176df 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConNpWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHTest.cs index a5c2d44ab..25fd49f60 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHVbTest.cs index 1578d257c..7c91cb7c5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHTest.cs index fc1efac6d..e4ef3ea83 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHVbTest.cs index 188da1646..306a7c8fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHTest.cs index 58a45051a..20f33f403 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHVbTest.cs index 21c10c485..35b03b2da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConOWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHTest.cs index 024e9ea32..571c1aad4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHVbTest.cs index 738b03888..5b04647ba 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHTest.cs index 1fdf66651..07ed03b5c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHVbTest.cs index a820feff9..035114742 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHTest.cs index 97789a303..78900bb68 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHVbTest.cs index 7a50a5782..19289ffe9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConWTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConWTest.cs index f3142b60a..a65ed9af2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConWTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiConWTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovHTest.cs index 6ba4c1bc7..0499608de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHTest.cs index 6c3a2fce9..a5adef394 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHVbTest.cs index 9b17248af..7bc08b9fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHTest.cs index d1686cbc6..d7f573c84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHVbTest.cs index 3bc7f1e93..15c091ad4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHTest.cs index 151cf2712..dba704ad7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHVbTest.cs index 8c96c9743..adf6abfab 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovNpWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHTest.cs index 96900e8af..3c7729b42 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHVbTest.cs index ff848a30d..c63be4e07 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHTest.cs index bb0d5bb3a..9c169761a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHVbTest.cs index 98bfe5adf..3bc6a29e6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHTest.cs index 418c1b7a9..7ce592db1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHVbTest.cs index ec28264f8..63c0d9f21 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovOWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHTest.cs index 08a4d70c7..38da24693 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHVbTest.cs index 6a96cae64..c1f2fca93 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWNpHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHTest.cs index d901f666b..763b9d24c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHVbTest.cs index 9f3117050..65dec07d1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWOHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHTest.cs index ef2aea5c2..2fdf66d5d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHVbTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHVbTest.cs index ad471a5c5..4fc47b2c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHVbTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/WiCovPWPHVbTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatio5PxATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatio5PxATest.cs index b64e1a138..e1ffc8c07 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatio5PxATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatio5PxATest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioA5PxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioA5PxTest.cs index 587a4083b..8b3dd6961 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioA5PxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioA5PxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioAATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioAATest.cs index 492f7288b..0591efe7d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioAATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioAATest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioConTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioConTest.cs index b7b4a3f3f..f7fef0148 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioConTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioConTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioCovTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioCovTest.cs index 5f733e51a..22926b48b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioCovTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroHRatioCovTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoD5PxATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoD5PxATest.cs index 684537a7e..934d5d91a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoD5PxATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoD5PxATest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDA5PxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDA5PxTest.cs index c72b6acd8..061fe47af 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDA5PxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDA5PxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDAATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDAATest.cs index 9ddb9d697..b3afdfd8f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDAATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDAATest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDConTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDConTest.cs index 6adab02a8..29875378d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDConTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDConTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDCovTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDCovTest.cs index 0f97e7e57..cdfb94128 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDCovTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroRatioNoDCovTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatio5PxATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatio5PxATest.cs index d69ddcbcc..9227052fe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatio5PxATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatio5PxATest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioA5PxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioA5PxTest.cs index eda38cd2b..25b052abc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioA5PxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioA5PxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioAATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioAATest.cs index 70bb59089..506750edc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioAATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioAATest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioConTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioConTest.cs index 83e8d6b61..89414d4b4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioConTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioConTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioCovTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioCovTest.cs index 5bd94904a..b7bb18a34 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioCovTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/bg_size/vector/ZeroWRatioCovTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/box_shadow/BoxShadowBlurDefinition001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/box_shadow/BoxShadowBlurDefinition001Test.cs index 5b6bfe6e8..6c626b747 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/box_shadow/BoxShadowBlurDefinition001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/box_shadow/BoxShadowBlurDefinition001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImImType003RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImImType003RefTest.cs index c8147beb4..df13c3406 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImImType003RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImImType003RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRepeat005RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRepeat005RefTest.cs index 6f9a89b48..3ade6dbd1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRepeat005RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRepeat005RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRepeatRoundRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRepeatRoundRefTest.cs index ff7cfd328..9748ca122 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRepeatRoundRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRepeatRoundRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRoundAndStretchRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRoundAndStretchRefTest.cs index 8c8ed64fd..9370b5867 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRoundAndStretchRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImRoundAndStretchRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImShorthand001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImShorthand001RefTest.cs index 826e678f3..dfe016682 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImShorthand001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImShorthand001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImSlicePRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImSlicePRefTest.cs index 2fb63f419..dcacca993 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImSlicePRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImSlicePRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImSpace001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImSpace001RefTest.cs index e555c3187..9d39199a5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImSpace001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BImSpace001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BRClippingRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BRClippingRefTest.cs index 90bb047c5..75840f305 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BRClippingRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BRClippingRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BRHorizontalValueIsZeroRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BRHorizontalValueIsZeroRefTest.cs index e8dfda8d4..8f2aff775 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BRHorizontalValueIsZeroRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BRHorizontalValueIsZeroRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BWidthPixelSnapping001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BWidthPixelSnapping001RefTest.cs index 52801da81..973a22043 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BWidthPixelSnapping001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BWidthPixelSnapping001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Bg334RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Bg334RefTest.cs index 7ab5adf51..64a261044 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Bg334RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Bg334RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip002RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip002RefTest.cs index 96923800d..e3c588c3c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip002RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip002RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip004RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip004RefTest.cs index 3dede58b6..744910f61 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip004RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip004RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip005RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip005RefTest.cs index f0c6bea31..050b76718 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip005RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClip005RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClipContentBoxRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClipContentBoxRefTest.cs index 945258865..a6a93542c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClipContentBoxRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClipContentBoxRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClipPaddingBoxTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClipPaddingBoxTest.cs index 5fd60ca87..784dcbb27 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClipPaddingBoxTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgClipPaddingBoxTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgColorClipTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgColorClipTest.cs index 68f2edef9..837bff41a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgColorClipTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgColorClipTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgGradientSubpixelFillsAreaRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgGradientSubpixelFillsAreaRefTest.cs index 2c9774443..f22487572 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgGradientSubpixelFillsAreaRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgGradientSubpixelFillsAreaRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgIm001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgIm001RefTest.cs index a6fe7800a..ee44da7c3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgIm001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgIm001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImCeWithBRRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImCeWithBRRefTest.cs index ec7370f6e..008cad0a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImCeWithBRRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImCeWithBRRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImCoverZoomed1RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImCoverZoomed1RefTest.cs index a3ef99de1..a74084e7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImCoverZoomed1RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImCoverZoomed1RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLetterRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLetterRefTest.cs index ff918859b..31b7cd2dd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLetterRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLetterRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLineRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLineRefTest.cs index ee11f854e..0d724649b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLineRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImFirstLineRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImLargeWithAutoRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImLargeWithAutoRefTest.cs index 42b27c0eb..efabc9b5f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImLargeWithAutoRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImLargeWithAutoRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImTableCellsZoomedRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImTableCellsZoomedRefTest.cs index f141cc075..b78007f00 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImTableCellsZoomedRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgImTableCellsZoomedRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin002RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin002RefTest.cs index 3c3ae8713..9ad080947 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin002RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin002RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin004RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin004RefTest.cs index 95c156fa9..745e9e909 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin004RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin004RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin005RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin005RefTest.cs index 1b78a25d4..79ce7ea53 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin005RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin005RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin006RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin006RefTest.cs index 098a9a2c5..738c488d7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin006RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin006RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin007RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin007RefTest.cs index ad891c608..270d028af 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin007RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgOrigin007RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPaintOrder001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPaintOrder001RefTest.cs index fc7e9b28a..9f31b1ca3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPaintOrder001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPaintOrder001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosNgPComRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosNgPComRefTest.cs index 12223b787..5ed30144a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosNgPComRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosNgPComRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosSubpixelAtBRefTenTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosSubpixelAtBRefTenTest.cs index eb194605e..f39750fa3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosSubpixelAtBRefTenTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosSubpixelAtBRefTenTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosThreeFourValuesRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosThreeFourValuesRefTest.cs index a031ed186..1250c6fbd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosThreeFourValuesRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgPosThreeFourValuesRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgRoundedImClipTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgRoundedImClipTest.cs index 60e23f2d1..a2e61723b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgRoundedImClipTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgRoundedImClipTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS002RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS002RefTest.cs index b80aba4cb..96b2663e5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS002RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS002RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS006RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS006RefTest.cs index 5d74f2323..929d2537d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS006RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS006RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS021RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS021RefTest.cs index 731f869bd..fb7417f1d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS021RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS021RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS025RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS025RefTest.cs index 8ae7491f7..2da20d5ee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS025RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS025RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS026RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS026RefTest.cs index c3ca983ac..931a19fb6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS026RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS026RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS027RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS027RefTest.cs index 10547d6fd..aab71ec13 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS027RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS027RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS028RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS028RefTest.cs index 101cd4672..f9a50d64d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS028RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS028RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS029RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS029RefTest.cs index 5a03ecc22..937b7423b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS029RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS029RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS031RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS031RefTest.cs index c97bf57f1..119b2327f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS031RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgS031RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgSOneValue1X1ImRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgSOneValue1X1ImRefTest.cs index 2fe09cea8..b4dd8fb74 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgSOneValue1X1ImRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BgSOneValue1X1ImRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadOutsetSpreadWithoutBRTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadOutsetSpreadWithoutBRTest.cs index 3699d5ebd..457e6e2dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadOutsetSpreadWithoutBRTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadOutsetSpreadWithoutBRTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadow005RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadow005RefTest.cs index 570d40380..79cd63eb3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadow005RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadow005RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowBodyRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowBodyRefTest.cs index 650b0f984..a1a8fec19 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowBodyRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowBodyRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetSpreadWithoutBRTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetSpreadWithoutBRTest.cs index 1405ae7b0..f2ccf91dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetSpreadWithoutBRTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetSpreadWithoutBRTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetWithoutBRTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetWithoutBRTest.cs index a5e749931..97c6b19be 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetWithoutBRTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowInsetWithoutBRTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowOutsetWithoutBRTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowOutsetWithoutBRTest.cs index e5976b49d..41f64f3dd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowOutsetWithoutBRTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowOutsetWithoutBRTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowTableBCollapse001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowTableBCollapse001RefTest.cs index 8a8765c60..63595bd0e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowTableBCollapse001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/BoxShadowTableBCollapse001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatRepeatRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatRepeatRefTest.cs index 7b8123084..5528d8ccb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatRepeatRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatRepeatRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatStretchRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatStretchRefTest.cs index 8be9be994..5ef26035a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatStretchRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImRepeatStretchRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImSourceRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImSourceRefTest.cs index a533e57c4..4c7e27617 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImSourceRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BImSourceRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipBBoxRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipBBoxRefTest.cs index d055d3808..e9d4c7fe1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipBBoxRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipBBoxRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipContentBoxRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipContentBoxRefTest.cs index 0fed5e47d..e31b3d7d1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipContentBoxRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipContentBoxRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipPaddingBoxRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipPaddingBoxRefTest.cs index 9ef666213..b6870d101 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipPaddingBoxRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipPaddingBoxRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipRefTest.cs index b21243713..24147e3cd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgClipRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginBBoxRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginBBoxRefTest.cs index fb8758617..c3fc1b29b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginBBoxRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginBBoxRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginContentBoxRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginContentBoxRefTest.cs index f9735c091..4e3e89ff6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginContentBoxRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginContentBoxRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginPaddingBoxRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginPaddingBoxRefTest.cs index d72a195e1..f471af0c7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginPaddingBoxRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgOriginPaddingBoxRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgS001RefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgS001RefTest.cs index 4f3c8d76e..6cf68f616 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgS001RefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgS001RefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSContainRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSContainRefTest.cs index 11f179a8e..15bdadfbc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSContainRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSContainRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSRefTest.cs index 8a555c228..d9d80d028 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BgSRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BoxShadowRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BoxShadowRefTest.cs index 1b5abd670..09fa0a413 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BoxShadowRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/Css3BoxShadowRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/CssBoxShadowRef001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/CssBoxShadowRef001Test.cs index b7daaeeb6..50492f3b0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/CssBoxShadowRef001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/CssBoxShadowRef001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/FirstLetterSpaceNotSelectedRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/FirstLetterSpaceNotSelectedRefTest.cs index 620f19c13..32a086cc3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/FirstLetterSpaceNotSelectedRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/FirstLetterSpaceNotSelectedRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/RefFilledBlack96PxSquareTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/RefFilledBlack96PxSquareTest.cs index be62c3f3a..9535e56ab 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/RefFilledBlack96PxSquareTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/RefFilledBlack96PxSquareTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/RefIfThereIsNoRedTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/RefIfThereIsNoRedTest.cs index a5eda3bf9..97caf5d92 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/RefIfThereIsNoRedTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/RefIfThereIsNoRedTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/ReferenceTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/ReferenceTest.cs index 2970dc959..d8df12951 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/ReferenceTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/ReferenceTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/SixtyXSixtyGreenBgTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/SixtyXSixtyGreenBgTest.cs index 6dc584861..344988cff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/SixtyXSixtyGreenBgTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/SixtyXSixtyGreenBgTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/SubpixelRepeatNoRepeatMixRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/SubpixelRepeatNoRepeatMixRefTest.cs index 09659aa3b..af37fe5b7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/SubpixelRepeatNoRepeatMixRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/SubpixelRepeatNoRepeatMixRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/TtwfReftestBRRefTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/TtwfReftestBRRefTest.cs index a107bee06..b73b9edf9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/TtwfReftestBRRefTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_backgrounds/reference/TtwfReftestBRRefTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic00ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic00ATest.cs index 567b203af..b4278920c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic00ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic00ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic06ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic06ATest.cs index 4846b41cd..132d48abc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic06ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic06ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic10ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic10ATest.cs index 7702d6218..98ec83c48 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic10ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityBasic10ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityClamping00BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityClamping00BTest.cs index 31bd4ae08..393d960be 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityClamping00BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityClamping00BTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityClamping10BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityClamping10BTest.cs index 91b0eca00..338e34216 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityClamping10BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityClamping10BTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenBTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenBTest.cs index 036728809..afa1c7496 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenBTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenBTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes1CTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes1CTest.cs index 4971770eb..653961b77 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes1CTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes1CTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes2CTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes2CTest.cs index e12e48147..8cbfa63ae 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes2CTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenMultipleBoxes2CTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenWithAlphaCTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenWithAlphaCTest.cs index 1eb0a626a..acff7dddc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenWithAlphaCTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T32OpacityOffscreenWithAlphaCTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T41Html4KeywordsATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T41Html4KeywordsATest.cs index 4431807c2..7b7141e1e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T41Html4KeywordsATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T41Html4KeywordsATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T421RgbValuesMeaningBTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T421RgbValuesMeaningBTest.cs index 69f35bc5e..2b834dc65 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T421RgbValuesMeaningBTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T421RgbValuesMeaningBTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA00ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA00ATest.cs index b606982f8..50c0cc270 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA00ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA00ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA06ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA06ATest.cs index b36b5e1b0..471ceebe3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA06ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA06ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA10ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA10ATest.cs index f699e282d..c87f3a6a8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA10ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaA10ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClampingA00BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClampingA00BTest.cs index 5baddaa3f..71377bd53 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClampingA00BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClampingA00BTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClampingA10BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClampingA10BTest.cs index 972aeaa50..943549d6d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClampingA10BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClampingA10BTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClipOutsideDeviceGamutBTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClipOutsideDeviceGamutBTest.cs index 0ea24379d..43af9de3b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClipOutsideDeviceGamutBTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaClipOutsideDeviceGamutBTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncIntATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncIntATest.cs index 2a7cd7e2f..a87b87d47 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncIntATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncIntATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncPctATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncPctATest.cs index a0a23a9b8..4baab29f6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncPctATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncPctATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncWhitespaceBTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncWhitespaceBTest.cs index ee60c7233..1ccc4d2de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncWhitespaceBTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaFuncWhitespaceBTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenBTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenBTest.cs index e3cf93259..84bc8cdb3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenBTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenBTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenMultipleBoxesCTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenMultipleBoxesCTest.cs index 22a6db6f3..b44d70379 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenMultipleBoxesCTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaOnscreenMultipleBoxesCTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaValuesMeaningBTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaValuesMeaningBTest.cs index eabbd7042..9b8a90823 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaValuesMeaningBTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T422RgbaValuesMeaningBTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T423Transparent1ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T423Transparent1ATest.cs index 51211adfa..05a5c1e1d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T423Transparent1ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T423Transparent1ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T423Transparent2ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T423Transparent2ATest.cs index b6ba18fd2..e82422e6d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T423Transparent2ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T423Transparent2ATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T43SvgKeywordsATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T43SvgKeywordsATest.cs index 92db5fcd3..6b2d84578 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T43SvgKeywordsATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_3/T43SvgKeywordsATest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderBottomColorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderBottomColorTest.cs index 409077bf1..ba07119ed 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderBottomColorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderBottomColorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderLeftColorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderLeftColorTest.cs index c9a2996dd..c394792dc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderLeftColorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderLeftColorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderRightColorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderRightColorTest.cs index 8b0701587..598402746 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderRightColorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderRightColorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderTopColorTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderTopColorTest.cs index 3d88af602..962457449 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderTopColorTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/BorderTopColorTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Color001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Color001Test.cs index 7d6e9b937..fcb67cce8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Color001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Color001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Color002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Color002Test.cs index a159a7f88..3bee68f8c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Color002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Color002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex001Test.cs index 6c0747b34..1e9b20177 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex002Test.cs index a3007238f..4fd544699 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex003Test.cs index 722f0460c..26ec5b2c2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex004Test.cs index 8af476376..df9c37200 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Hex004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb001Test.cs index 90fb72844..a2bfc0d1f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb002Test.cs index 71415095c..25399683e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb003Test.cs index 6dcfa417b..e7e34aa22 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb004Test.cs index d946a710a..9b838ecf3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb005Test.cs index fe661c456..f0de92952 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb006Test.cs index e7cc0c23f..9ede4aea3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb007Test.cs index 1c6a01ba9..1678cee79 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb008Test.cs index 89a0a2f9f..e4d3e9f54 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgb008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba001Test.cs index d8a3912bd..fcc70e176 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba002Test.cs index 89bac3338..4e242ac88 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba003Test.cs index ed51ee1f9..02dae1c10 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba004Test.cs index cca6912d7..667391534 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba005Test.cs index c40a11024..41119455a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba006Test.cs index 6fc1cb712..0cfa9c90a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba007Test.cs index 87768c0f8..3df201854 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba008Test.cs index c5057ce03..1a84bc265 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_color_4/Rgba008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems001Test.cs index d3c7e4865..7a1c5e23d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems002Test.cs index 5bc473de0..e28ccf449 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems003Test.cs index f606c243f..b58037c71 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems004Test.cs index 1cbd0d7b4..adeae13ee 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems005Test.cs index 829b6673f..c818d6f29 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems006Test.cs index 604e14a71..7a8af7dbd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems007Test.cs index 6e0193563..39db4dfef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems009Test.cs index bde17ddc2..aaf26e652 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItems009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineOverflowNonVisibleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineOverflowNonVisibleTest.cs index 0e6423e59..31b3841cd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineOverflowNonVisibleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineOverflowNonVisibleTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineTest.cs index a680e2d16..f2521e31c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsBaselineTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsCenter2Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsCenter2Test.cs index 9a57024dd..8fbf870e0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsCenter2Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsCenter2Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsCenterTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsCenterTest.cs index ee5700087..a0e609b25 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsCenterTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsCenterTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexend2Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexend2Test.cs index 09bdcd566..9fa800778 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexend2Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexend2Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexendTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexendTest.cs index 074b6ea2d..786d75363 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexendTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexendTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstart2Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstart2Test.cs index f100b3b95..051e26c7c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstart2Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstart2Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstartTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstartTest.cs index b817b3d5a..c11924670 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstartTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsFlexstartTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsStretch2Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsStretch2Test.cs index 5b834a338..9ae8880f4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsStretch2Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsStretch2Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsStretchTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsStretchTest.cs index 3f5f25fa5..909c66d0f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsStretchTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AlignItemsStretchTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AnonymousFlexItem004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AnonymousFlexItem004Test.cs index 38e8459f3..0dc9c7a34 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AnonymousFlexItem004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/AnonymousFlexItem004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicBlockHoriz001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicBlockHoriz001Test.cs index 5dfb4d8aa..2429861e7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicBlockHoriz001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicBlockHoriz001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicBlockVert001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicBlockVert001Test.cs index 53d7f8b33..e66271c9a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicBlockVert001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicBlockVert001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicFieldsetHoriz001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicFieldsetHoriz001Test.cs index e430f2043..9a55ce0ec 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicFieldsetHoriz001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicFieldsetHoriz001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicFieldsetVert001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicFieldsetVert001Test.cs index d6ffc759d..013294a06 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicFieldsetVert001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/BasicFieldsetVert001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes001Test.cs index 8e43c06b3..5eac78e16 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes002Test.cs index 72e4d17c7..df513a08a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes003Test.cs index 37b41210a..95df80e90 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes004Test.cs index 77287e350..545039055 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes005Test.cs index 800227d95..9d293a123 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes006Test.cs index 3c159dde7..ec8fe3909 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DefiniteSizes006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DisplayFlex001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DisplayFlex001Test.cs index 25a2c847d..b4809f992 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DisplayFlex001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/DisplayFlex001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex001Test.cs index 7e25d2808..054e919cd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex002Test.cs index 953b29ab2..ba715b66c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex003Test.cs index deb2eee3f..5c8d45b5a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex004Test.cs index 3b242464a..500b1af34 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/Flex004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn001Test.cs index 35dff21e4..d4b0ec89e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn002Test.cs index f917955a4..cb8cea9bd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn003Test.cs index 80d674fe5..f4ea49221 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn004Test.cs index aa0b59f12..b678fb11b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn005Test.cs index 7a8531d92..201cf5692 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn006Test.cs index 965929baa..4a3a49c80 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn007Test.cs index dcc1e3387..3f6c4f3bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn009Test.cs index 1df91c65f..ce57d2e6b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn009Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn012Test.cs index aee7a8a42..dc13dc8d8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn016Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn016Test.cs index 7bce3443b..69d46087a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn016Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgColumn016Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow001Test.cs index 75856ec17..59e1f6582 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow002Test.cs index 29f5402bf..cb3bed2d8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow003Test.cs index 7f1f65ff2..f9a9185a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow006Test.cs index 0749d15c1..11d6a7e39 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow007Test.cs index 1a6e17ab7..bbf13b5ca 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow012Test.cs index e052c01bc..85fc232e9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow012Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow014Test.cs index 94b9a0a3f..c2b426639 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexAspectRatioImgRow014Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBaseTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBaseTest.cs index 6810af169..8c0b95665 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBaseTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBaseTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis001Test.cs index c05fa2a91..a8072d798 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis002Test.cs index 9bd68e87c..07607f7fe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis003Test.cs index d5ba68891..22fb2ed4e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis004Test.cs index 3c071351e..ac1d0891d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis005Test.cs index 00ce89a52..c56866a60 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis006Test.cs index be4bfe8e5..c52e7373e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis007Test.cs index 94b625bb4..8dbe571fe 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis008Test.cs index c6a08d81b..516860385 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis008Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis010Test.cs index f6b54b21d..2ba92b5c8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasis010Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent001ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent001ATest.cs index ed4cfa514..c87d792de 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent001ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent001ATest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent001BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent001BTest.cs index 08c2020f3..5aaffd79f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent001BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent001BTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent002ATest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent002ATest.cs index f065b3a70..94cde73d2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent002ATest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent002ATest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent002BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent002BTest.cs index ddfa52eed..e3fd49ef4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent002BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexBasisContent002BTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnPercentageIgnoredTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnPercentageIgnoredTest.cs index cd819dcd3..acc9af62f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnPercentageIgnoredTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnPercentageIgnoredTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnReverseTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnReverseTest.cs index 756912362..08b616fd5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnReverseTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnReverseTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnTest.cs index f99bc4f79..87409f4c9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionColumnTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionDefaultTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionDefaultTest.cs index 4b302a1e1..751629aff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionDefaultTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionDefaultTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionRowReverseTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionRowReverseTest.cs index 3368f8121..671cd40c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionRowReverseTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionRowReverseTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionRowTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionRowTest.cs index decbad9e7..f4afa3dc4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionRowTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexDirectionRowTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexFlow001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexFlow001Test.cs index f989d3f6d..a661ef282 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexFlow001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexFlow001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexFlow002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexFlow002Test.cs index 450e3317c..e1897a374 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexFlow002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexFlow002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow001Test.cs index 4c185dde3..ecd2e35a3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow002Test.cs index 266187156..03e63e15f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow003Test.cs index 89440bea2..010d456c1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow004Test.cs index 03c4ad293..70a2aa446 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow005Test.cs index e1472fd15..ca68284f2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow006Test.cs index 706737bd8..15df8cff3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow007Test.cs index dbd571338..cf27da8bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexGrow007Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapDefaultTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapDefaultTest.cs index 4bee03faf..2b2924db4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapDefaultTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapDefaultTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapFlexingTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapFlexingTest.cs index 82c0a15f4..96f30d04a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapFlexingTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapFlexingTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz001Test.cs index 276452723..fb3cc8bea 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz002Test.cs index 129ba6b05..63c90c3b3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapHoriz002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapNowrapTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapNowrapTest.cs index a3eccda81..7771d5a0b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapNowrapTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapNowrapTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapVert001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapVert001Test.cs index 2d1d5eb3e..2774119e0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapVert001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapVert001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapVert002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapVert002Test.cs index cca2736da..540679517 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapVert002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapVert002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapWrapReverseTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapWrapReverseTest.cs index 56ded85e7..94ef039a0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapWrapReverseTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapWrapReverseTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapWrapTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapWrapTest.cs index 68999f2c0..3e70d6ef3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapWrapTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/FlexWrapWrapTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001aTest.cs index 16a268c8d..73289dc90 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001bTest.cs index 2e91680ff..d325320fd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz001bTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz002Test.cs index 9dfffac0e..0de7d72a6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz003Test.cs index c5d05447a..4ad41011a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz004Test.cs index 563468cb6..ae7d59c47 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz005Test.cs index 110e0a4ff..e082bd28e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz006Test.cs index 3282c35c9..9deb3cb8d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentHoriz006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert001aTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert001aTest.cs index 685e60caf..ae14304a7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert001aTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert001aTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert001bTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert001bTest.cs index 13b5e0e1f..d48d8ecd4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert001bTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert001bTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert002Test.cs index 0d9a237a0..6dbd783a6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert003Test.cs index d211848f5..0d3a82946 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert004Test.cs index c8f129b72..4f3427643 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert005Test.cs index f52f22050..e0b5958e8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert006Test.cs index 4c4f1553e..295b9dea1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentVert006Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentWmvert001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentWmvert001Test.cs index 0b4ce820d..2bccfb2fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentWmvert001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/JustifyContentWmvert001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto001Test.cs index 2a18adabe..f7e01d385 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto003Test.cs index 30db44b75..711a30486 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto004Test.cs index 5e961861a..ac1dd71a3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto005Test.cs index b510363af..30bcab209 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/MinWidthAuto005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz001Test.cs index 598606e82..281989f68 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz002Test.cs index 06f54e7dc..18f54687b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz003Test.cs index b3c212ac0..f9ad8a56f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz004Test.cs index aee45682f..4ee85e9f8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz005Test.cs index 73ddf25a6..ff8da8174 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowHoriz005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert001Test.cs index 4df8e3533..1ba9cb7ce 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert002Test.cs index 854756c1f..8e8c2c74c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert003Test.cs index 91786c25b..c15d06b3b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert003Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert004Test.cs index c1a933979..0fd1eb026 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert004Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert005Test.cs index 3f8900265..568e335fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/OverflowVert005Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingHoriz001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingHoriz001Test.cs index 394cccb4d..8d71ce78a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingHoriz001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingHoriz001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingHoriz002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingHoriz002Test.cs index 9767f2741..f0f6c62b6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingHoriz002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingHoriz002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingVert001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingVert001Test.cs index 7f3fe6f13..8dfd57e3b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingVert001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingVert001Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingVert002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingVert002Test.cs index 2f86a11c4..9ef6be06b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingVert002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_flexbox/SizingVert002Test.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageBackground000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageBackground000Test.cs index f3baf9925..dd065ae68 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageBackground000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageBackground000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageBorders000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageBorders000Test.cs index 04e20ccc6..22a86db62 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageBorders000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageBorders000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageMargin003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageMargin003Test.cs index 50bf595eb..3694adb88 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageMargin003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageMargin003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageProperties000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageProperties000Test.cs index 894d77341..e208220da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageProperties000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageProperties000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize000Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize000Test.cs index f5b0180fb..f406ca74e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize000Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize000Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize001Test.cs index 3df9b3bec..a3ca0280d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize002Test.cs index 3eedccca3..4c1127e40 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize003Test.cs index 75d0322ee..aaf04cd61 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize004Test.cs index 19dad5a52..724c2ca94 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize005Test.cs index dac31617c..8c534bc6b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize006Test.cs index 19efef545..959303a4e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize007Test.cs index f878094ad..3023dca00 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize008Test.cs index 7ecd833ad..b3121a4a2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize009Test.cs index ae99f2c14..aa6b297da 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize010Test.cs index 18d2c24b7..f4b73dc52 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_page_3/PageSize010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline001Test.cs index 9db6c294a..7285ad095 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline002Test.cs index 5022cc016..f7173fea5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline007Test.cs index d66e7ad36..b294f3db1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline008Test.cs index 417079b8c..d34b245fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline009Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline009Test.cs index a356a0493..e6b6e4d06 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline009Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline009Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline010Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline010Test.cs index 5f4c0b56c..1bd41b78b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline010Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline010Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline012Test.cs index 943f599a7..0ced88ac9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/Outline012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineColor001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineColor001Test.cs index d3b38c153..10edc2fc1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineColor001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineColor001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineOffset001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineOffset001Test.cs index 9058e2642..9fbd39110 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineOffset001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineOffset001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle011Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle011Test.cs index cfe04b8d3..b810b8037 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle011Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle011Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle012Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle012Test.cs index f11a0895d..ecb1731fa 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle012Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle012Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle013Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle013Test.cs index 8785329a2..b32c64224 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle013Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle013Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle014Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle014Test.cs index d585133cd..754e0cda2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle014Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/css_ui_3/OutlineStyle014Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Directory4Byte001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Directory4Byte001Test.cs index 6f22f8171..dd4b8c907 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Directory4Byte001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Directory4Byte001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryCompLength001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryCompLength001Test.cs index aab06e117..4f0aa6af4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryCompLength001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryCompLength001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOrigLength001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOrigLength001Test.cs index 87b8db0fe..80ac0b9b3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOrigLength001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOrigLength001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOrigLength002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOrigLength002Test.cs index e07b097a1..96dfd10d6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOrigLength002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOrigLength002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps001Test.cs index ecdcf146a..46f25b5b3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps002Test.cs index 9351a3d1c..317f84fb6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps005Test.cs index 4725ed239..eded7ff82 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/DirectoryOverlaps005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderLength001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderLength001Test.cs index 672f23389..9ce992472 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderLength001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderLength001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderLength002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderLength002Test.cs index 741ed82b8..77f9c03d9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderLength002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderLength002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderNumTables001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderNumTables001Test.cs index 9b537d6e4..7c7335fa9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderNumTables001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderNumTables001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderReserved001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderReserved001Test.cs index e76a748dc..f316fe5bd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderReserved001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderReserved001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderSignature001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderSignature001Test.cs index 36adaf338..523f92405 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderSignature001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderSignature001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize001Test.cs index 116fbed57..7b3908767 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize002Test.cs index 5dc68274b..c9f27b0db 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize003Test.cs index ed6269598..2faaf1488 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/HeaderTotalSfntSize003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/PrivatedataNoeffect001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/PrivatedataNoeffect001Test.cs index de29e89e2..aa13e067c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/PrivatedataNoeffect001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/PrivatedataNoeffect001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/PrivatedataNoeffect002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/PrivatedataNoeffect002Test.cs index 4a07eb830..eaae5026d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/PrivatedataNoeffect002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/PrivatedataNoeffect002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression001Test.cs index 2cf823521..263c4b4b5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression002Test.cs index d0400f840..b4325cd84 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression003Test.cs index 655252eb0..c776e3e0c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression004Test.cs index d6c393f39..48d1f4011 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataCompression004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataZlib001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataZlib001Test.cs index 6cddf14bd..3f0a88dad 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataZlib001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/TabledataZlib001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid001Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid001Test.cs index f4c6f1eed..c0d6b99a1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid001Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid001Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid002Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid002Test.cs index 69231885a..fcfc0d4f9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid002Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid002Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid003Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid003Test.cs index c5aa6e773..188a429d8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid003Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid003Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid004Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid004Test.cs index bad3faf05..251be96d2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid004Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid004Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid005Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid005Test.cs index f52f74d9a..5406fee4a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid005Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid005Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid006Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid006Test.cs index 92fd9728d..dcd3e3fc1 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid006Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid006Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid007Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid007Test.cs index affe66eba..707d88378 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid007Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid007Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid008Test.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid008Test.cs index 5f919d9a7..39bc1c4f3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid008Test.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/css/w3c/woff/Valid008Test.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css.W3c; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AbbrTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AbbrTest.cs index 449740f17..9448e3571 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AbbrTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AbbrTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AddressTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AddressTest.cs index d7693863e..a0d54b39d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AddressTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AddressTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ArticleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ArticleTest.cs index 23931873b..e6f3a3b53 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ArticleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ArticleTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AsideTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AsideTest.cs index 3c7be26e5..07cb83b6a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AsideTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/AsideTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BTest.cs index 2daebb651..1487375fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BdoTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BdoTest.cs index 544f8df75..1546c2c57 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BdoTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BdoTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BlockquoteTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BlockquoteTest.cs index cfd2c2ba1..6bfdc6aa4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BlockquoteTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BlockquoteTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BodyTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BodyTest.cs index 24e965176..7334f013e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BodyTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BodyTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BrTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BrTest.cs index efe6041ca..01190d661 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BrTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/BrTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CaptionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CaptionTest.cs index 4f8871e06..6a5393f79 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CaptionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CaptionTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CenterTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CenterTest.cs index f50ebe7c0..717c45c34 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CenterTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CenterTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CiteTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CiteTest.cs index bb3a7b795..5a9ecb778 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CiteTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CiteTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CodeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CodeTest.cs index 8fd78cfb2..bd1e421d7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CodeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/CodeTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ColColgroupTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ColColgroupTest.cs index 5cf30911a..9ff02ff74 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ColColgroupTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ColColgroupTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DelTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DelTest.cs index 80ad8f6e3..2a1d71a6e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DelTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DelTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DfnTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DfnTest.cs index 2c0c2e134..a2d6c523c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DfnTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DfnTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DivTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DivTest.cs index dda9d573f..9bc85d1f2 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DivTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/DivTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/EmTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/EmTest.cs index edc6770c9..a1a6c01b5 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/EmTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/EmTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/FigureTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/FigureTest.cs index 580501bb2..c2902a6a7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/FigureTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/FigureTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/FormTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/FormTest.cs index 6acadec5e..ab33f915e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/FormTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/FormTest.cs @@ -1,50 +1,30 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; using iText.Forms; +using iText.Forms.Logs; using iText.Html2pdf; -using iText.Html2pdf.Logs; using iText.IO.Util; using iText.Kernel.Pdf; using iText.Kernel.Utils; @@ -163,13 +143,15 @@ public virtual void ButtonSplit01Test() { } [NUnit.Framework.Test] - [LogMessage(LayoutLogMessageConstant.ELEMENT_DOES_NOT_FIT_AREA, Count = 2)] + [LogMessage(LayoutLogMessageConstant.ELEMENT_DOES_NOT_FIT_AREA, Count = 4)] + [LogMessage(FormsLogMessageConstants.INPUT_FIELD_DOES_NOT_FIT, Count = 2)] public virtual void ButtonSplit02Test() { RunTest("buttonSplit02"); } [NUnit.Framework.Test] [LogMessage(LayoutLogMessageConstant.ELEMENT_DOES_NOT_FIT_AREA, Count = 2)] + [LogMessage(FormsLogMessageConstants.INPUT_FIELD_DOES_NOT_FIT, Count = 2)] public virtual void ButtonSplit03Test() { RunTest("buttonSplit03"); } @@ -185,13 +167,13 @@ public virtual void Radiobox2Test() { } [NUnit.Framework.Test] - [LogMessage(Html2PdfLogMessageConstant.ACROFORM_NOT_SUPPORTED_FOR_SELECT, Count = 2)] + [LogMessage(FormsLogMessageConstants.ACROFORM_NOT_SUPPORTED_FOR_SELECT, Count = 2)] public virtual void SelectTest01() { RunTest("select01", false); } [NUnit.Framework.Test] - [LogMessage(Html2PdfLogMessageConstant.ACROFORM_NOT_SUPPORTED_FOR_SELECT, Count = 3)] + [LogMessage(FormsLogMessageConstants.ACROFORM_NOT_SUPPORTED_FOR_SELECT, Count = 3)] public virtual void SelectTest02() { RunTest("select02", false); } diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HTest.cs index 74b5cf923..07ae7838d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HeaderFooterTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HeaderFooterTest.cs index 18c7eb473..08635be7b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HeaderFooterTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HeaderFooterTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HrTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HrTest.cs index d471b72fa..710d09289 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HrTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HrTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HtmlTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HtmlTest.cs index 2a6a645b8..4fd4e630b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HtmlTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/HtmlTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; @@ -130,6 +110,7 @@ public virtual void Html08Test() { + "cmp_htmlTest08.pdf", destinationFolder, "diff08_")); } + //TODO replace cmp file when fixing DEVSIX-7303 [NUnit.Framework.Test] public virtual void Html09Test() { HtmlConverter.ConvertToPdf(new FileInfo(sourceFolder + "htmlTest09.html"), new FileInfo(destinationFolder diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ITest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ITest.cs index 3bad7dea8..d657b074d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ITest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ITest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ImageTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ImageTest.cs index 592ff722d..bfcdb5f3c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ImageTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ImageTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; @@ -156,6 +136,7 @@ public virtual void ImageAltTextTest() { [NUnit.Framework.Test] public virtual void ImageUrlExternalDocumentTest() { + // Android-Conversion-Ignore-Test (TODO DEVSIX-6459 fix the SecurityException(Permission denied) from UrlUtil method) ConvertToPdfAndCompare("externalUrlImage", SOURCE_FOLDER, DESTINATION_FOLDER); } diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/InputTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/InputTest.cs index 13042ce7b..96bd08479 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/InputTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/InputTest.cs @@ -1,52 +1,33 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; using System.IO; +using iText.Forms.Form.Element; +using iText.Forms.Logs; using iText.Html2pdf; using iText.Html2pdf.Attach; using iText.Html2pdf.Attach.Impl; -using iText.Html2pdf.Attach.Impl.Layout.Form.Element; using iText.Html2pdf.Attach.Impl.Tags; using iText.Html2pdf.Logs; using iText.IO.Util; @@ -100,7 +81,7 @@ public virtual void Input05Test() { } [NUnit.Framework.Test] - [LogMessage(Html2PdfLogMessageConstant.INPUT_FIELD_DOES_NOT_FIT, Ignore = true)] + [LogMessage(FormsLogMessageConstants.INPUT_FIELD_DOES_NOT_FIT, Ignore = true)] public virtual void Input06Test() { String htmlPath = sourceFolder + "inputTest06.html"; String outPdfPath = destinationFolder + "inputTest06.pdf"; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/InsTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/InsTest.cs index 047a0fe09..6430099c4 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/InsTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/InsTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/KbdTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/KbdTest.cs index aaad66799..569aaf1ef 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/KbdTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/KbdTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/LabelTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/LabelTest.cs index 0a6aa66df..02d4334ad 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/LabelTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/LabelTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/LinkTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/LinkTest.cs index f6641f615..7c405f756 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/LinkTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/LinkTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; @@ -52,6 +32,8 @@ source product. using iText.Test.Attributes; namespace iText.Html2pdf.Element { + // Android-Conversion-Skip-Line (TODO DEVSIX-7372 investigate why a few tests related to PdfA in iTextCore and PdfHtml were cut) + // Android-Conversion-Skip-Line (TODO DEVSIX-7372 investigate why a few tests related to PdfA in iTextCore and PdfHtml were cut) [NUnit.Framework.Category("IntegrationTest")] public class LinkTest : ExtendedITextTest { public static readonly String sourceFolder = iText.Test.TestUtil.GetParentProjectDirectory(NUnit.Framework.TestContext @@ -157,6 +139,7 @@ public virtual void LinkTest09() { + "cmp_linkTest09.pdf", destinationFolder, "diff09_")); } + // Android-Conversion-Skip-Block-Start (TODO DEVSIX-7372 investigate why a few tests related to PdfA in iTextCore and PdfHtml were cut) [NUnit.Framework.Test] [LogMessage(PdfAConformanceLogMessageConstant.CATALOG_SHOULD_CONTAIN_LANG_ENTRY)] public virtual void LinkTest10ToPdfa() { @@ -172,6 +155,7 @@ public virtual void LinkTest10ToPdfa() { + "cmp_linkTest10.pdf", destinationFolder, "diff10_")); } + // Android-Conversion-Skip-Block-End [NUnit.Framework.Test] public virtual void LinkTest11() { PdfDocument pdfDocument = new PdfDocument(new PdfWriter(destinationFolder + "linkTest11.pdf")); diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ListItemTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ListItemTest.cs index 076d0bc58..e46e2f1dd 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ListItemTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ListItemTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ListTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ListTest.cs index dc184c7d6..2c95c1774 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ListTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ListTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; @@ -53,6 +33,7 @@ source product. using iText.Test.Attributes; namespace iText.Html2pdf.Element { + // Android-Conversion-Skip-Line (TODO DEVSIX-7372 investigate why a few tests related to PdfA in iTextCore and PdfHtml were cut) [NUnit.Framework.Category("IntegrationTest")] public class ListTest : ExtendedHtmlConversionITextTest { public static readonly String SOURCE_FOLDER = iText.Test.TestUtil.GetParentProjectDirectory(NUnit.Framework.TestContext @@ -231,6 +212,13 @@ public virtual void InlineWithInlineBlockAsLiChildTest() { ConvertToPdfAndCompare("inlineWithInlineBlockAsLiChild", SOURCE_FOLDER, DESTINATION_FOLDER); } + [NUnit.Framework.Test] + public virtual void ConvertingListOver2PagesTest() { + //TODO: update after DEVSIX-6982 is fixed + ConvertToPdfAndCompare("listOver2Pages", SOURCE_FOLDER, DESTINATION_FOLDER); + } + + // Android-Conversion-Skip-Block-Start (TODO DEVSIX-7372 investigate why a few tests related to PdfA in iTextCore and PdfHtml were cut) [NUnit.Framework.Test] [LogMessage(Html2PdfLogMessageConstant.NOT_SUPPORTED_LIST_STYLE_TYPE, Count = 32)] public virtual void ListToPdfaTest() { @@ -247,5 +235,6 @@ public virtual void ListToPdfaTest() { NUnit.Framework.Assert.IsNull(new CompareTool().CompareByContent(DESTINATION_FOLDER + "listToPdfa.pdf", SOURCE_FOLDER + "cmp_listToPdfa.pdf", DESTINATION_FOLDER, "diff99_")); } + // Android-Conversion-Skip-Block-End } } diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MainNavArticleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MainNavArticleTest.cs index 9de92d24b..95a0cf7b8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MainNavArticleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MainNavArticleTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MarkTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MarkTest.cs index 6cb75a966..e7161fa5f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MarkTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MarkTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MetaTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MetaTest.cs index 0b49f395d..dd98fb08c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MetaTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/MetaTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ObjectTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ObjectTest.cs index 93757fee0..1f330ff06 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ObjectTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ObjectTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/OptGroupTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/OptGroupTest.cs index 3b657473c..a94c1b87c 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/OptGroupTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/OptGroupTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/OptionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/OptionTest.cs index f0cabf997..734ed7870 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/OptionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/OptionTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ParagraphTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ParagraphTest.cs index 202426e80..d14fa44e7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ParagraphTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ParagraphTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/PreTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/PreTest.cs index cef7b0e1a..fd7d16586 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/PreTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/PreTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/QTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/QTest.cs index c02b0fbd0..f812c0747 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/QTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/QTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/STest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/STest.cs index 6c547d957..4fdd542fb 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/STest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/STest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SampTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SampTest.cs index 7fcc085a6..f1571ddc6 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SampTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SampTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ScriptTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ScriptTest.cs index 336a0c3e4..28f544d06 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ScriptTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/ScriptTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SectionTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SectionTest.cs index 4123dde52..51f239358 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SectionTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SectionTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SelectTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SelectTest.cs index aa9d16ab9..5d1a04b19 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SelectTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SelectTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SmallTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SmallTest.cs index 531e4297d..c4e44a49a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SmallTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SmallTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SpanTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SpanTest.cs index 1c4871563..913bf1f62 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SpanTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SpanTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StrikeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StrikeTest.cs index aed3cdb7d..1c0a2bda9 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StrikeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StrikeTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StrongTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StrongTest.cs index 2c9361126..e907ab618 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StrongTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StrongTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StyleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StyleTest.cs index c12afe615..50c64006f 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StyleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/StyleTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SupSubTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SupSubTest.cs index 5db18e05a..fbba009bf 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SupSubTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SupSubTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SvgTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SvgTest.cs index 285fa36ab..f094577ce 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SvgTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/SvgTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TableBodyTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TableBodyTest.cs index 7e55abb87..6ffa9320b 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TableBodyTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TableBodyTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TableTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TableTest.cs index 390b33419..eb6139009 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TableTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TableTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TaggedPdfFormTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TaggedPdfFormTest.cs index f19cbd369..ce150c6a7 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TaggedPdfFormTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TaggedPdfFormTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TagsInsideButtonTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TagsInsideButtonTest.cs index 4e2c1afde..bd33fd26e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TagsInsideButtonTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TagsInsideButtonTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TimeTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TimeTest.cs index 2766193e3..f58e5bebc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TimeTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TimeTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TitleTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TitleTest.cs index 380090fe0..145f149b0 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TitleTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TitleTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TtTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TtTest.cs index 9955ad0de..02027b0e8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TtTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/TtTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/UTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/UTest.cs index 0a8e3cbcd..78578d0a8 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/UTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/UTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/VarTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/VarTest.cs index 05cd1e28a..de700d590 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/VarTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/element/VarTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/events/PdfHtmlAcroformDocumentEventTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/events/PdfHtmlAcroformDocumentEventTest.cs index fc8b23baf..948e2db68 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/events/PdfHtmlAcroformDocumentEventTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/events/PdfHtmlAcroformDocumentEventTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; @@ -86,20 +66,20 @@ public virtual void EndPageEventWithFieldTest() { private PdfDocument AddEventHandlersToPdfDocument(String pdfOutput, ConverterProperties converterProperties ) { FileStream pdfStream = new FileStream(pdfOutput, FileMode.Create); - IList elements = HtmlConverter.ConvertToElements("" + IList elements = HtmlConverter.ConvertToElements("" , converterProperties); - IList footer = HtmlConverter.ConvertToElements("" + IList footer = HtmlConverter.ConvertToElements("" , converterProperties); PdfWriter writer = new PdfWriter(pdfStream); PdfDocument pdfDocument = new PdfDocument(writer); - iText.Kernel.Events.IEventHandler handler = new _IEventHandler_116(elements, footer); + iText.Kernel.Events.IEventHandler handler = new _IEventHandler_95(elements, footer); pdfDocument.AddEventHandler(PdfDocumentEvent.START_PAGE, handler); pdfDocument.AddEventHandler(PdfDocumentEvent.END_PAGE, handler); return pdfDocument; } - private sealed class _IEventHandler_116 : iText.Kernel.Events.IEventHandler { - public _IEventHandler_116(IList elements, IList footer) { + private sealed class _IEventHandler_95 : iText.Kernel.Events.IEventHandler { + public _IEventHandler_95(IList elements, IList footer) { this.elements = elements; this.footer = footer; } diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/events/PdfHtmlPageXofYEventHandlerTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/events/PdfHtmlPageXofYEventHandlerTest.cs index 4d2240460..172e0dc21 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/events/PdfHtmlPageXofYEventHandlerTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/events/PdfHtmlPageXofYEventHandlerTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/UriResolverTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/UriResolverTest.cs index 8acd27545..789c206cc 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/UriResolverTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/UriResolverTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/font/FontsUnicodeCoverageTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/font/FontsUnicodeCoverageTest.cs index 7ef0e9633..e777d354e 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/font/FontsUnicodeCoverageTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/font/FontsUnicodeCoverageTest.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/form/NameResolverTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/form/NameResolverTest.cs index 298557b44..17d9620ff 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/form/NameResolverTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/form/NameResolverTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Test; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ExternalImageTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ExternalImageTest.cs index 191ca2aeb..cf2d75c8d 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ExternalImageTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ExternalImageTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.IO.Image; @@ -55,6 +35,7 @@ public class ExternalImageTest : ExtendedITextTest { [NUnit.Framework.Test] public virtual void Test() { + // Android-Conversion-Ignore-Test (TODO DEVSIX-6459 fix the SecurityException(Permission denied) from UrlUtil method) ResourceResolver resourceResolver = new ResourceResolver(""); PdfXObject externalImage = resourceResolver.RetrieveImage("https://raw.githubusercontent.com/itext/itext7/develop/layout/src/test/resources/com/itextpdf/layout/ImageTest/itis.jpg" ); diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ExternalResourcesTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ExternalResourcesTest.cs index 6080c7ba5..7cbd33564 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ExternalResourcesTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ExternalResourcesTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.StyledXmlParser.Resolver.Resource; using iText.Test; @@ -48,6 +28,7 @@ namespace iText.Html2pdf.Resolver.Resource { public class ExternalResourcesTest : ExtendedITextTest { [NUnit.Framework.Test] public virtual void ExternalStylesheetTest() { + // Android-Conversion-Ignore-Test (TODO DEVSIX-6459 fix the SecurityException(Permission denied) from UrlUtil method) ResourceResolver resourceResolver = new ResourceResolver(""); byte[] exByteArray = resourceResolver.RetrieveBytesFromResource("https://git.itextsupport.com/projects/I7J/repos/html2pdf/browse/src/test/resources/com/itextpdf/html2pdf/styles.css" ); diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/HtmlResourceResolverTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/HtmlResourceResolverTest.cs index d24529727..fce09bcad 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/HtmlResourceResolverTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/HtmlResourceResolverTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.IO; @@ -89,6 +69,7 @@ public virtual void ResourceResolverHtmlWithSvgTest01() { [LogMessage(Html2PdfLogMessageConstant.WORKER_UNABLE_TO_PROCESS_OTHER_WORKER, Count = 2)] [LogMessage(Html2PdfLogMessageConstant.UNABLE_TO_RETRIEVE_IMAGE_WITH_GIVEN_BASE_URI, Count = 2)] public virtual void ResourceResolverHtmlWithSvgTest02() { + // Android-Conversion-Ignore-Test (TODO DEVSIX-6612 Unignore tests related to "#" symbol in URL path) String baseUri = SOURCE_FOLDER + "%23r%e%2525s@o%25urces/"; String outPdf = DESTINATION_FOLDER + "resourceResolverHtmlWithSvgTest02.pdf"; String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverHtmlWithSvgTest02.pdf"; @@ -97,6 +78,7 @@ public virtual void ResourceResolverHtmlWithSvgTest02() { [NUnit.Framework.Test] public virtual void ResourceResolverTest07() { + // Android-Conversion-Ignore-Test (TODO DEVSIX-6612 Unignore tests related to "#" symbol in URL path) String outPdf = DESTINATION_FOLDER + "resourceResolverTest07.pdf"; String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverTest07.pdf"; HtmlConverter.ConvertToPdf(new FileInfo(SOURCE_FOLDER + "resourceResolverTest07.html"), new FileInfo(outPdf @@ -107,8 +89,27 @@ public virtual void ResourceResolverTest07() { [NUnit.Framework.Test] [LogMessage(Html2PdfLogMessageConstant.NO_WORKER_FOUND_FOR_TAG)] + public virtual void ResourceResolverWithoutSharpSymbolTest07A() { + // Due to the fact that on Android "./src/test/resources" substring will be replaced as abosulte path, + // base URI resolving will be different from Java. To don't lose the last folder in base URI path after + // resolving, write back slash (it isn't lost because on Unix system backslash isn't file separator). + // TODO DEVSIX-6576 Fix base URI resolving in UriResolver class + String baseUri = SOURCE_FOLDER + "r%e%2525s@o%25urces\\"; + String outPdf = DESTINATION_FOLDER + "resourceResolverWithoutSharpSymbolTest07A.pdf"; + String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverTest07A.pdf"; + ConvertHtmlStreamToPdf(SOURCE_FOLDER + "resourceResolverWithoutSharpSymbolTest07A.html", outPdf, cmpPdf, baseUri + ); + } + + [NUnit.Framework.Test] + // Android-Conversion-Ignore-Test (TODO DEVSIX-6612 Unignore tests related to "#" symbol in URL path) + [LogMessage(Html2PdfLogMessageConstant.NO_WORKER_FOUND_FOR_TAG)] public virtual void ResourceResolverTest07A() { - String baseUri = SOURCE_FOLDER + "%23r%e%2525s@o%25urces/"; + // Due to the fact that on Android "./src/test/resources" substring will be replaced as abosulte path, + // base URI resolving will be different from Java. To don't lose the last folder in base URI path after + // resolving, write back slash (it isn't lost because on Unix system backslash isn't file separator). + // TODO DEVSIX-6576 Fix base URI resolving in UriResolver class + String baseUri = SOURCE_FOLDER + "%23r%e%2525s@o%25urces\\"; String outPdf = DESTINATION_FOLDER + "resourceResolverTest07A.pdf"; String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverTest07A.pdf"; ConvertHtmlStreamToPdf(SOURCE_FOLDER + "resourceResolverTest07A.html", outPdf, cmpPdf, baseUri); @@ -116,6 +117,7 @@ public virtual void ResourceResolverTest07A() { [NUnit.Framework.Test] public virtual void ResourceResolverTest07B() { + // Android-Conversion-Ignore-Test (TODO DEVSIX-6612 Unignore tests related to "#" symbol in URL path) String outPdf = DESTINATION_FOLDER + "resourceResolverTest07B.pdf"; String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverTest07B.pdf"; HtmlConverter.ConvertToPdf(new FileInfo(SOURCE_FOLDER + "#r%e%25s@o%urces/resourceResolverTest07B.html"), @@ -125,6 +127,7 @@ public virtual void ResourceResolverTest07B() { } [NUnit.Framework.Test] + // Android-Conversion-Ignore-Test (TODO DEVSIX-6612 Unignore tests related to "#" symbol in URL path) [LogMessage(Html2PdfLogMessageConstant.NO_WORKER_FOUND_FOR_TAG)] public virtual void ResourceResolverTest07C() { String outPdf = DESTINATION_FOLDER + "resourceResolverTest07C.pdf"; @@ -137,14 +140,33 @@ public virtual void ResourceResolverTest07C() { [NUnit.Framework.Test] public virtual void ResourceResolverHtmlWithSvgTest03() { - String baseUri = SOURCE_FOLDER + "%23r%e%2525s@o%25urces/"; + // Android-Conversion-Ignore-Test (TODO DEVSIX-6612 Unignore tests related to "#" symbol in URL path) + // Due to the fact that on Android "./src/test/resources" substring will be replaced as abosulte path, + // base URI resolving will be different from Java. To don't lose the last folder in base URI path after + // resolving, write back slash (it isn't lost because on Unix system backslash isn't file separator). + // TODO DEVSIX-6576 Fix base URI resolving in UriResolver class + String baseUri = SOURCE_FOLDER + "%23r%e%2525s@o%25urces\\"; String outPdf = DESTINATION_FOLDER + "resourceResolverHtmlWithSvgTest03.pdf"; String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverHtmlWithSvgTest03.pdf"; ConvertHtmlStreamToPdf(SOURCE_FOLDER + "resourceResolverHtmlWithSvgTest03.html", outPdf, cmpPdf, baseUri); } + [NUnit.Framework.Test] + public virtual void ResourceResolverHtmlWithSvgWithoutSharpSymbolTest03() { + // Due to the fact that on Android "./src/test/resources" substring will be replaced as abosulte path, + // base URI resolving will be different from Java. To don't lose the last folder in base URI path after + // resolving, write back slash (it isn't lost because on Unix system backslash isn't file separator). + // TODO DEVSIX-6576 Fix base URI resolving in UriResolver class + String baseUri = SOURCE_FOLDER + "r%e%2525s@o%25urces\\"; + String outPdf = DESTINATION_FOLDER + "resourceResolverHtmlWithSvgWithoutSharpSymbolTest03.pdf"; + String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverHtmlWithSvgTest03.pdf"; + ConvertHtmlStreamToPdf(SOURCE_FOLDER + "resourceResolverHtmlWithSvgWithoutSharpSymbolTest03.html", outPdf, + cmpPdf, baseUri); + } + [NUnit.Framework.Test] public virtual void ResourceResolverHtmlWithSvgTest04() { + // Android-Conversion-Ignore-Test (TODO DEVSIX-6612 Unignore tests related to "#" symbol in URL path) String outPdf = DESTINATION_FOLDER + "resourceResolverHtmlWithSvgTest04.pdf"; String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverHtmlWithSvgTest04.pdf"; ConvertHtmlStreamToPdf(SOURCE_FOLDER + "resourceResolverHtmlWithSvgTest04.html", outPdf, cmpPdf, SOURCE_FOLDER @@ -154,6 +176,7 @@ public virtual void ResourceResolverHtmlWithSvgTest04() { [NUnit.Framework.Test] public virtual void ResourceResolverCssWithSvg() { //TODO: update after DEVSIX-2239 fix + // Android-Conversion-Ignore-Test (TODO DEVSIX-6612 Unignore tests related to "#" symbol in URL path) String outPdf = DESTINATION_FOLDER + "resourceResolverCssWithSvg.pdf"; String cmpPdf = SOURCE_FOLDER + "cmp_resourceResolverCssWithSvg.pdf"; HtmlConverter.ConvertToPdf(new FileInfo(SOURCE_FOLDER + "resourceResolverCssWithSvg.html"), new FileInfo(outPdf diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/PathUtil.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/PathUtil.cs index 19c80268d..79fcccb2a 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/PathUtil.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/PathUtil.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Test; diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ResourceReleaseResolverTest.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ResourceReleaseResolverTest.cs index d2f2dc7bc..e761c5bf3 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ResourceReleaseResolverTest.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/resolver/resource/ResourceReleaseResolverTest.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.IO; @@ -54,7 +34,7 @@ public class ResourceReleaseResolverTest : ExtendedITextTest { .CurrentContext.TestDirectory) + "/resources/itext/html2pdf/resolver/resource/"; public static readonly String destinationFolder = NUnit.Framework.TestContext.CurrentContext.TestDirectory - + "/test/itext/html2pdf/resolver/resource/"; + + "/test/itext/html2pdf/resolver/resource/release/"; [NUnit.Framework.OneTimeSetUp] public static void BeforeClass() { diff --git a/itext.tests/itext.html2pdf.tests/itext/html2pdf/utils/ImageSizeMeasuringListener.cs b/itext.tests/itext.html2pdf.tests/itext/html2pdf/utils/ImageSizeMeasuringListener.cs index 26540cd7f..090dfd715 100644 --- a/itext.tests/itext.html2pdf.tests/itext/html2pdf/utils/ImageSizeMeasuringListener.cs +++ b/itext.tests/itext.html2pdf.tests/itext/html2pdf/utils/ImageSizeMeasuringListener.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest/cmp_buttonsWithColor.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest/cmp_buttonsWithColor.pdf deleted file mode 100644 index ba9ea0097..000000000 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest/cmp_buttonsWithColor.pdf and /dev/null differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest/cmp_buttonsWithoutColor.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest/cmp_buttonsWithoutColor.pdf deleted file mode 100644 index e2e3a81da..000000000 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attach/impl/layout/form/renderer/ButtonColorTest/cmp_buttonsWithoutColor.pdf and /dev/null differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInButtonForTaggedPdfTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInButtonForTaggedPdfTest.pdf index a7d36f341..f6e96161a 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInButtonForTaggedPdfTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInButtonForTaggedPdfTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInButtonForTaggedPdfWithActoformTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInButtonForTaggedPdfWithActoformTest.pdf index 7dc7fcca0..1c744fccd 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInButtonForTaggedPdfWithActoformTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInButtonForTaggedPdfWithActoformTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInInputAndTextareaForTaggedPdfTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInInputAndTextareaForTaggedPdfTest.pdf index 072fa0f41..0650b5ce9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInInputAndTextareaForTaggedPdfTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInInputAndTextareaForTaggedPdfTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInInputAndTextareaForTaggedPdfWithActoformTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInInputAndTextareaForTaggedPdfWithActoformTest.pdf index d1cd817d0..fbc884803 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInInputAndTextareaForTaggedPdfWithActoformTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/cmp_langAttrInInputAndTextareaForTaggedPdfWithActoformTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/langAttrInInputAndTextareaForTaggedPdfTest.html b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/langAttrInInputAndTextareaForTaggedPdfTest.html index 365e59a12..3d27d19b4 100644 --- a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/langAttrInInputAndTextareaForTaggedPdfTest.html +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/attribute/LangAttributeTest/langAttrInInputAndTextareaForTaggedPdfTest.html @@ -6,7 +6,7 @@ - + diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest01.pdf index 4e258a2d4..aac426d7d 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest02.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest02.pdf index bf5b32473..e352b94ed 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest02.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest02.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest03.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest03.pdf index 6bcdff847..0d2cad65e 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest03.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/BoxSizingTest/cmp_boxSizingFormTest03.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_activeAndDisabledStateOfButton.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_activeAndDisabledStateOfButton.pdf index dc69e6a25..77544fab6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_activeAndDisabledStateOfButton.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_activeAndDisabledStateOfButton.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_buttonOnElements.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_buttonOnElements.pdf index 91610ec62..93c6c2c37 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_buttonOnElements.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_buttonOnElements.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_buttonSizes.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_buttonSizes.pdf index 3e484839e..75bf3bb62 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_buttonSizes.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_buttonSizes.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_checkboxAndRadioDisabled.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_checkboxAndRadioDisabled.pdf index dadbed995..73fbfc745 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_checkboxAndRadioDisabled.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_checkboxAndRadioDisabled.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_iconsInButtonsOfDifferentSize.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_iconsInButtonsOfDifferentSize.pdf index 8393351a6..7a80d8a43 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_iconsInButtonsOfDifferentSize.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_iconsInButtonsOfDifferentSize.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_styledButtons.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_styledButtons.pdf index b4dc821e1..1f73c84e6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_styledButtons.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/CssFormsTest/cmp_styledButtons.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/DisplayFlexTest/cmp_checkbox.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/DisplayFlexTest/cmp_checkbox.pdf index 89519e862..0bd6d2ec6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/DisplayFlexTest/cmp_checkbox.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/DisplayFlexTest/cmp_checkbox.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/DisplayTest/cmp_displayBlockInsideParagraph.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/DisplayTest/cmp_displayBlockInsideParagraph.pdf index fc84f4756..27d8c6ef5 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/DisplayTest/cmp_displayBlockInsideParagraph.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/DisplayTest/cmp_displayBlockInsideParagraph.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_fontFaceWoffTest01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_fontFaceWoffTest01.pdf index ccc9a08bb..07e85d659 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_fontFaceWoffTest01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_fontFaceWoffTest01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_fontFaceWoffTest02.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_fontFaceWoffTest02.pdf index d5e30222f..1f630dd0c 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_fontFaceWoffTest02.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_fontFaceWoffTest02.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_texFonts01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_texFonts01.pdf index 640bba406..f21029a6f 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_texFonts01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_texFonts01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest01.pdf index eb1d54393..fa4b3e5d3 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest03.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest03.pdf index cd2e5c570..528b46a1f 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest03.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest03.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest05.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest05.pdf index b1b4a69ff..8a4fd52ba 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest05.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/FontFaceTest/cmp_w3cProblemTest05.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LineHeightTest/cmp_lineHeightMathJaxMathFontNormalTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LineHeightTest/cmp_lineHeightMathJaxMathFontNormalTest.pdf index c0a0b87f9..77337a350 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LineHeightTest/cmp_lineHeightMathJaxMathFontNormalTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LineHeightTest/cmp_lineHeightMathJaxMathFontNormalTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LinearGradientTest/cmp_backgroundImageLinearGradientInButton.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LinearGradientTest/cmp_backgroundImageLinearGradientInButton.pdf index 4064ddea2..65f95a79d 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LinearGradientTest/cmp_backgroundImageLinearGradientInButton.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LinearGradientTest/cmp_backgroundImageLinearGradientInButton.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LinearGradientTest/cmp_backgroundImageLinearGradientInForms.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LinearGradientTest/cmp_backgroundImageLinearGradientInForms.pdf index 8d304428c..5f8783385 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LinearGradientTest/cmp_backgroundImageLinearGradientInForms.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/LinearGradientTest/cmp_backgroundImageLinearGradientInForms.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_simpleTextDecorationTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_simpleTextDecorationTest.pdf new file mode 100644 index 000000000..61e655ce7 Binary files /dev/null and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_simpleTextDecorationTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements01.pdf index 4736302c1..06b6f25d6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements02.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements02.pdf index aada71cee..28c3e5bf0 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements02.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements02.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements03.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements03.pdf index 85b319a27..63c54f2db 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements03.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements03.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements04.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements04.pdf new file mode 100644 index 000000000..e979af1ca Binary files /dev/null and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationColorEffectOnNestedElements04.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationNoneOnNestedElements.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationNoneOnNestedElements.pdf index 80cca7338..02fd3c2be 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationNoneOnNestedElements.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationNoneOnNestedElements.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationTest01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationTest01.pdf index 53e703c7e..8e5bf87ab 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationTest01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationTest01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationWithChildElement.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationWithChildElement.pdf index 0bb1482e3..57b120877 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationWithChildElement.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationWithChildElement.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationWithDisplayInlineBlock.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationWithDisplayInlineBlock.pdf index f055021ea..438fef24e 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationWithDisplayInlineBlock.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/cmp_textDecorationWithDisplayInlineBlock.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/simpleTextDecorationTest.html b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/simpleTextDecorationTest.html new file mode 100644 index 000000000..c7edee113 --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/simpleTextDecorationTest.html @@ -0,0 +1,86 @@ + + + + + Title + + + + + +
+
+

2. div in div with 'overline'

+

3. p in div with 'none'span in paragraph with 'line-through'

+ 3. span in div with 'line-through'
+
+
+
+
+

3. div in div in div with 'none'

+

4. paragraph in div with 'line-through'

+ 4. span in div with 'line-through'span in span with 'underline' +
+
+
+ + + + \ No newline at end of file diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements01.html b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements01.html index 7f59dea6b..fa00b9081 100644 --- a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements01.html +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements01.html @@ -1,8 +1,7 @@
- -
Text
- - - \ No newline at end of file +
Text
+ + + \ No newline at end of file diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements02.html b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements02.html index 8cd717870..46739c286 100644 --- a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements02.html +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements02.html @@ -2,7 +2,9 @@
-
Text
+
Text
+ - \ No newline at end of file + + \ No newline at end of file diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements04.html b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements04.html new file mode 100644 index 000000000..c25e6389b --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/TextDecorationTest/textDecorationColorEffectOnNestedElements04.html @@ -0,0 +1,20 @@ + + +
+
Underline should be green
+
Under line should be red, line through black
+
Underline and line through + should be green +
+
+
+
Underline and overline should + be green +
+
Underline and overline should be + blue +
+
Underline and overline should be black
+
+ + diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/VerticalAlignmentInlineBlockTest/cmp_form.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/VerticalAlignmentInlineBlockTest/cmp_form.pdf index 1a7369a32..e3df7f8d2 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/VerticalAlignmentInlineBlockTest/cmp_form.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/VerticalAlignmentInlineBlockTest/cmp_form.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/VisibilityTest/cmp_visiblePropertyInFormRadioButtonTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/VisibilityTest/cmp_visiblePropertyInFormRadioButtonTest.pdf index 36f81c84d..27ad68a04 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/VisibilityTest/cmp_visiblePropertyInFormRadioButtonTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/VisibilityTest/cmp_visiblePropertyInFormRadioButtonTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/privatedata-noeffect-001.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/privatedata-noeffect-001.pdf index 29a345214..1c9291cd1 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/privatedata-noeffect-001.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/privatedata-noeffect-001.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/privatedata-noeffect-002.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/privatedata-noeffect-002.pdf index 14cca4d23..25a37fba6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/privatedata-noeffect-002.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/privatedata-noeffect-002.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-001.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-001.pdf index 89bf35ef5..64a0e0cbc 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-001.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-001.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-002.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-002.pdf index 3747d57e5..a396ba64d 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-002.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-002.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-003.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-003.pdf index f9e473c26..1b3f71e71 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-003.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-003.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-004.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-004.pdf index d024b5acc..b9b39df68 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-004.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/tabledata-compression-004.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-001.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-001.pdf index 3c2598553..326f4cbd9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-001.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-001.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-002.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-002.pdf index 16293f657..29f544f7f 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-002.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-002.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-003.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-003.pdf index 14e02169e..1e390ec60 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-003.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-003.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-004.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-004.pdf index 6589bc6af..af19a7e39 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-004.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/css/w3c/woff/valid-004.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/BrTest/cmp_brInsideDifferentTagsTest01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/BrTest/cmp_brInsideDifferentTagsTest01.pdf index fac17b39a..615c12cfa 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/BrTest/cmp_brInsideDifferentTagsTest01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/BrTest/cmp_brInsideDifferentTagsTest01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01.pdf index 77382334c..85a23a843 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01_acro.pdf index 433ede2e5..68e9bc803 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01_acro_flatten.pdf index 382533255..075f060bc 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit01_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02.pdf index 6da43b9b0..1bcb5e4e7 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02_acro.pdf index 824ba1c12..b359f914d 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02_acro_flatten.pdf index 7dbe41702..f54262422 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit02_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03.pdf index 73be15457..0451c2761 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03_acro.pdf index a90ecba16..439fb3fd5 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03_acro_flatten.pdf index c81ea442e..51a646e92 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonSplit03_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren.pdf index bff5e1b5a..448480f54 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren_acro.pdf index 9dc2f1683..83e61dde2 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren_acro_flatten.pdf index 148071198..f7d464f7a 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_buttonWithChildren_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1.pdf index 0d8b7754b..eae01650d 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1_acro.pdf index 2f0fb95aa..52003008b 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1_acro_flatten.pdf index c991693db..47edf5a2b 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_checkbox1_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01.pdf index b27a311b2..f86d198b0 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01_acro.pdf index 703eabfa4..ddca391c6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01_acro_flatten.pdf index 93e11f9a8..b2cfe6359 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea01_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02.pdf index 908190edf..0ee4a5065 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02_acro.pdf index b05229a02..05072211c 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02_acro_flatten.pdf index ced049bcc..455cf5f87 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea02_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03.pdf index c8925b86e..eb86db633 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03_acro.pdf index c1cfb5b37..4d90470a5 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03_acro_flatten.pdf index 100d23818..f0f73b652 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_colsTextArea03_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset.pdf index 751b74bf8..e0c3263f6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend.pdf index c18da837b..899bbbd15 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend_acro.pdf index 71481dec8..2f8d4adb0 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend_acro_flatten.pdf index b1f8774e9..4f2563660 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldsetLegend_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset_acro.pdf index e3cbf8a53..ece7331eb 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset_acro_flatten.pdf index 085603405..28e84356f 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_fieldset_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField.pdf index 0ddb581da..53f6300eb 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField_acro.pdf index 927519428..5a501567f 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField_acro_flatten.pdf index dd41e7516..5d1166a2d 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_forcedSplitTextField_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay.pdf index c641030cc..91dea5a79 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay_acro.pdf index 9be81683c..45cfc74a6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay_acro_flatten.pdf index 7114975e3..ac8955945 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_inputDisplay_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label.pdf index 08fa65389..1088c3226 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label_acro.pdf index 43a19f661..e820cab51 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label_acro_flatten.pdf index 7f2a6b506..084f47a1e 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_label_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonNoPageCounter.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonNoPageCounter.pdf index 8f6e900ae..3779425b9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonNoPageCounter.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonNoPageCounter.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonWithPageCounterAtBotton.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonWithPageCounterAtBotton.pdf index c9342dfde..8dd4396f0 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonWithPageCounterAtBotton.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonWithPageCounterAtBotton.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonWithPageCounterOnTop.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonWithPageCounterOnTop.pdf index d50e57bd8..62e68d2e9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonWithPageCounterOnTop.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radioButtonWithPageCounterOnTop.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1.pdf index c90958770..c8517f894 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1_acro.pdf index e66526e30..a2d56a12e 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1_acro_flatten.pdf index 9b958957b..166e45bdc 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox1_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2.pdf index 57bb27d18..2848dff48 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2_acro.pdf index b6d6b6fbe..f177acb00 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2_acro_flatten.pdf index 2dba352af..17f01845b 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_radiobox2_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleButton_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleButton_acro.pdf index 4aecc0254..fe1f267f9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleButton_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleButton_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleButton_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleButton_acro_flatten.pdf index 7b4e57b01..c9f16d226 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleButton_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleButton_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField.pdf index 24edb38c9..24fc7f3c8 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField_acro.pdf index e96563bd6..9602b7378 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField_acro_flatten.pdf index 63eb67e92..73d158daa 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_simpleTextField_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField.pdf index 900ab0dc4..b33be3fd7 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField_acro.pdf index e6b7b8db8..ba512c9b1 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField_acro_flatten.pdf index 209b9ada8..e01688d48 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_splitTextField_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1.pdf index 8b63cbc39..515c968fb 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1_acro.pdf index b34f2be58..d6463b1d4 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1_acro_flatten.pdf index 60e68a35b..c6f89eab4 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight1_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2.pdf index 74b1e431f..6244fecc1 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2_acro.pdf index 9d2b0207d..0ae5ac761 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2_acro_flatten.pdf index 9051ac1b7..61e0b0b9e 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight2_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3.pdf index e4b1f7490..af2cd3b91 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3_acro.pdf index 8a44fdaf2..b6927779e 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3_acro_flatten.pdf index e1d47c0c3..45c34139a 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textFieldHeight3_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay.pdf index e418b0986..8c0d75976 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay_acro.pdf index 2387d1527..dee1cebd7 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay_acro_flatten.pdf index ebee10bf6..56a755791 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/FormTest/cmp_textareaDisplay_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/HtmlTest/cmp_htmlTest09.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/HtmlTest/cmp_htmlTest09.pdf index 1cb08a96b..5f47ba3bb 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/HtmlTest/cmp_htmlTest09.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/HtmlTest/cmp_htmlTest09.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonTest01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonTest01.pdf index 5c4f29987..7c77d37e7 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonTest01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonTest01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonTest02.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonTest02.pdf index aa1d185ac..962aaeea6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonTest02.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonTest02.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonWithDisplayBlock.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonWithDisplayBlock.pdf index 6052cd3fa..1d67e4157 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonWithDisplayBlock.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_buttonWithDisplayBlock.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxDisplayBlock.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxDisplayBlock.pdf index f3387a4d9..6e8f60873 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxDisplayBlock.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxDisplayBlock.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxDisplayBlockInTable.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxDisplayBlockInTable.pdf index 7cddc3c01..bf9e82f4a 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxDisplayBlockInTable.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxDisplayBlockInTable.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxTagging.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxTagging.pdf index 68cd15b28..1096e56e6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxTagging.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_checkboxTagging.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputDisabled01AcroTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputDisabled01AcroTest.pdf index fa82e3ddb..738fd0a6b 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputDisabled01AcroTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputDisabled01AcroTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputDisabled01Test.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputDisabled01Test.pdf index 65c7095d3..6ef784683 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputDisabled01Test.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputDisabled01Test.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest05.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest05.pdf index 47bf0c7ec..219236889 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest05.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest05.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest06.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest06.pdf index f33914b38..2bc613ef8 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest06.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest06.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest08.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest08.pdf index 99a7edc95..03f78d8b5 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest08.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest08.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest09.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest09.pdf index c70d82911..f6e184f30 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest09.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest09.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest10.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest10.pdf index 9a5b83f0a..339e78437 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest10.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_inputTest10.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_longInputValueCausesNothingTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_longInputValueCausesNothingTest.pdf index 0fa78ce0e..3e2c28da9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_longInputValueCausesNothingTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_longInputValueCausesNothingTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest03.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest03.pdf index 4f927a1fc..65276a376 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest03.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest03.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest05.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest05.pdf index 4272d7a79..65a8a4022 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest05.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest05.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest05A.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest05A.pdf index 18deebf21..6e94d9be2 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest05A.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_placeholderTest05A.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_smallPercentWidth.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_smallPercentWidth.pdf index dfd83e8e3..cefa689a4 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_smallPercentWidth.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/InputTest/cmp_smallPercentWidth.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/LinkTest/cmp_linkTest01.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/LinkTest/cmp_linkTest01.pdf index ae0b3d520..6a820940f 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/LinkTest/cmp_linkTest01.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/LinkTest/cmp_linkTest01.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/cmp_listOver2Pages.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/cmp_listOver2Pages.pdf new file mode 100644 index 000000000..a975ae7a4 Binary files /dev/null and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/cmp_listOver2Pages.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/cmp_listsWithInlineChildren.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/cmp_listsWithInlineChildren.pdf index 5a426ed13..384c0dfc9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/cmp_listsWithInlineChildren.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/cmp_listsWithInlineChildren.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/listOver2Pages.html b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/listOver2Pages.html new file mode 100644 index 000000000..1f38a48dc --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ListTest/listOver2Pages.html @@ -0,0 +1,25 @@ + + + + + List that spans over 2 pages + + + +

+
    +
  • a
  • +
  • b
  • +
  • c
  • +
  • d
  • +
  • e
  • +
+ + \ No newline at end of file diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ParagraphTest/cmp_paragraphWithButtonInputLabelSelectTextareaTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ParagraphTest/cmp_paragraphWithButtonInputLabelSelectTextareaTest.pdf index d36b66710..59d346a34 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ParagraphTest/cmp_paragraphWithButtonInputLabelSelectTextareaTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/ParagraphTest/cmp_paragraphWithButtonInputLabelSelectTextareaTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged.pdf index 9cbbf4376..2f991cf4a 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged_acro.pdf index a7a2402e2..f61c32697 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged_acro_flatten.pdf index 9cc1d4c39..393e0b0d4 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_fieldSetFormTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged.pdf index 2cdb8b614..bffbda30a 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged_acro.pdf index b6ab1f1f2..ad26057bf 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged_acro_flatten.pdf index d1374a210..588c661f1 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleButtonTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged.pdf index ba87342a1..ec8fe0d56 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged_acro.pdf index 1d18801c7..4c036625e 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged_acro_flatten.pdf index 09747ff4f..e8345e479 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleCheckboxTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged.pdf index 8deb55878..f3fc644bd 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged_acro.pdf index c8d41c6d5..1ce95b96c 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged_acro_flatten.pdf index 6f6ec3b47..5d3d0989f 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleLabelTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged.pdf index 16b2ce45f..28b542df6 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged_acro.pdf index 5e07f6475..b5356f7f9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged_acro_flatten.pdf index b73b96f39..4151f6799 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextFieldTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged.pdf index f81b83da2..f281428f1 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged_acro.pdf index d58b18b25..8d3710ab4 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged_acro_flatten.pdf index d45e69b65..0f4939016 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TaggedPdfFormTest/cmp_simpleTextareaTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside.pdf index 30a34312d..d7f118782 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged.pdf index 415669d4d..568e35015 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged_acro.pdf index 8f29a17d9..6e48755d7 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged_acro_flatten.pdf index cf46dda48..f990adf72 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInsideTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside_acro.pdf index 82bb0e1b0..dad915f21 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside_acro_flatten.pdf index 5f5cf5ee7..00478f313 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithImageInside_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside.pdf index 4825a2502..cf35b3a2f 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged.pdf index 2a9ef2473..c51ff2b55 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged_acro.pdf index 249274a98..f93c9d9ec 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged_acro_flatten.pdf index 92f5aae80..9e718d9de 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInsideTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside_acro.pdf index 6715534f6..3c22b47e9 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside_acro_flatten.pdf index ea3e1ad31..d616cae88 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_buttonWithPInside_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged.pdf index c455e79e5..93da07337 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged_acro.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged_acro.pdf index a17bf2d66..9f2b84718 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged_acro.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged_acro.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged_acro_flatten.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged_acro_flatten.pdf index 6709f128b..fa6131451 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged_acro_flatten.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/element/TagsInsideButtonTest/cmp_imageNotFinishedTaggedTagged_acro_flatten.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/events/PdfHtmlAcroformDocumentEventTest/cmp_endPageEventWithFieldTest.pdf b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/events/PdfHtmlAcroformDocumentEventTest/cmp_endPageEventWithFieldTest.pdf index 36c5e2013..bdf2f7f54 100644 Binary files a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/events/PdfHtmlAcroformDocumentEventTest/cmp_endPageEventWithFieldTest.pdf and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/events/PdfHtmlAcroformDocumentEventTest/cmp_endPageEventWithFieldTest.pdf differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/image folder/sqpurple.gif b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/image folder/sqpurple.gif new file mode 100644 index 000000000..730088247 Binary files /dev/null and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/image folder/sqpurple.gif differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/image folder/sqpurple.gif b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/image folder/sqpurple.gif new file mode 100644 index 000000000..730088247 Binary files /dev/null and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/image folder/sqpurple.gif differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/image.png b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/image.png new file mode 100644 index 000000000..e4fca0ad4 Binary files /dev/null and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/image.png differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/itis.jpg b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/itis.jpg new file mode 100644 index 000000000..7cc0b2320 Binary files /dev/null and b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/itis.jpg differ diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/lines.svg b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/lines.svg new file mode 100644 index 000000000..bc4ccb897 --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/lines.svg @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/svgWithImage.svg b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/svgWithImage.svg new file mode 100644 index 000000000..309262d72 --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/r%e%25s@o%urces/svgWithImage.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + svgWithImages + + + + \ No newline at end of file diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/styles06.css b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/styles06.css new file mode 100644 index 000000000..6e88731e1 --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/r%e%25s@o%urces/styles06.css @@ -0,0 +1,6 @@ +@media all, print { +ul, ol { + list-style-image: url('image folder/sqpurple.gif'); + } + +} \ No newline at end of file diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/resourceResolverHtmlWithSvgWithoutSharpSymbolTest03.html b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/resourceResolverHtmlWithSvgWithoutSharpSymbolTest03.html new file mode 100644 index 000000000..27200ca99 --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/resourceResolverHtmlWithSvgWithoutSharpSymbolTest03.html @@ -0,0 +1,16 @@ + + + + + +

HTML5 SVG Demo

+

Example Image1

+ +

Example Image2

+ +

Example Object1

+ +

Example Object2

+ + + diff --git a/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/resourceResolverWithoutSharpSymbolTest07A.html b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/resourceResolverWithoutSharpSymbolTest07A.html new file mode 100644 index 000000000..45c317c07 --- /dev/null +++ b/itext.tests/itext.html2pdf.tests/resources/itext/html2pdf/resolver/resource/HtmlResourceResolverTest/resourceResolverWithoutSharpSymbolTest07A.html @@ -0,0 +1,29 @@ + + + + + + + + +
    +
  • Coffee
  • +
  • Tea
  • +
  • Coca Cola
  • +
+ +
    +
  1. Coffee
  2. +
  3. Tea
  4. +
  5. Coca Cola
  6. +
+ +
+
  • Coffee
  • +
  • Tea
  • +
  • Coca Cola
  • +
    + + + + diff --git a/itext/itext.html2pdf/Html2PdfExtensions.cs b/itext/itext.html2pdf/Html2PdfExtensions.cs index d91ce7a93..758aaaf30 100644 --- a/itext/itext.html2pdf/Html2PdfExtensions.cs +++ b/itext/itext.html2pdf/Html2PdfExtensions.cs @@ -1,44 +1,25 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com */ +along with this program. If not, see . +*/ using System; using System.Collections.Generic; using System.IO; diff --git a/itext/itext.html2pdf/Properties/AssemblyInfo.cs b/itext/itext.html2pdf/Properties/AssemblyInfo.cs index 34b2986bb..b37aca9ab 100644 --- a/itext/itext.html2pdf/Properties/AssemblyInfo.cs +++ b/itext/itext.html2pdf/Properties/AssemblyInfo.cs @@ -6,9 +6,9 @@ [assembly: AssemblyTitle("iText.Html2Pdf")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("iText Group NV")] +[assembly: AssemblyCompany("Apryse Group NV")] [assembly: AssemblyProduct("iText")] -[assembly: AssemblyCopyright("Copyright (c) 1998-2023 iText Group NV")] +[assembly: AssemblyCopyright("Copyright (c) 1998-2023 Apryse Group NV")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: InternalsVisibleTo("itext.html2pdf.tests,PublicKey=0024000004800000940000000602000000240000525" + @@ -28,6 +28,6 @@ [assembly: Guid("ff6ba09d-3655-466a-8c17-a7bfd3479ca1")] -[assembly: AssemblyVersion("4.0.5.0")] -[assembly: AssemblyFileVersion("4.0.5.0")] -[assembly: AssemblyInformationalVersion("4.0.5")] +[assembly: AssemblyVersion("5.0.0.0")] +[assembly: AssemblyFileVersion("5.0.0.0")] +[assembly: AssemblyInformationalVersion("5.0.0")] diff --git a/itext/itext.html2pdf/itext.html2pdf.csproj b/itext/itext.html2pdf/itext.html2pdf.csproj index ff9d27687..bc9a37718 100644 --- a/itext/itext.html2pdf/itext.html2pdf.csproj +++ b/itext/itext.html2pdf/itext.html2pdf.csproj @@ -31,7 +31,7 @@
    - + diff --git a/itext/itext.html2pdf/itext/html2pdf/ByteBuffer.cs b/itext/itext.html2pdf/itext/html2pdf/ByteBuffer.cs index f8a80f395..96010aa5e 100644 --- a/itext/itext.html2pdf/itext/html2pdf/ByteBuffer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/ByteBuffer.cs @@ -1,44 +1,25 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com */ +along with this program. If not, see . +*/ using System; namespace iText.Html2pdf diff --git a/itext/itext.html2pdf/itext/html2pdf/ConverterProperties.cs b/itext/itext.html2pdf/itext/html2pdf/ConverterProperties.cs index 138332675..88ba42024 100644 --- a/itext/itext.html2pdf/itext/html2pdf/ConverterProperties.cs +++ b/itext/itext.html2pdf/itext/html2pdf/ConverterProperties.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Commons.Actions.Contexts; diff --git a/itext/itext.html2pdf/itext/html2pdf/HtmlConverter.cs b/itext/itext.html2pdf/itext/html2pdf/HtmlConverter.cs index decd1c79f..4569e129a 100644 --- a/itext/itext.html2pdf/itext/html2pdf/HtmlConverter.cs +++ b/itext/itext.html2pdf/itext/html2pdf/HtmlConverter.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/PortUtil.cs b/itext/itext.html2pdf/itext/html2pdf/PortUtil.cs index 63aecae3a..062a35e0b 100644 --- a/itext/itext.html2pdf/itext/html2pdf/PortUtil.cs +++ b/itext/itext.html2pdf/itext/html2pdf/PortUtil.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System.IO; diff --git a/itext/itext.html2pdf/itext/html2pdf/ProcessorContextCreator.cs b/itext/itext.html2pdf/itext/html2pdf/ProcessorContextCreator.cs index c1fbe625b..c184b88d4 100644 --- a/itext/itext.html2pdf/itext/html2pdf/ProcessorContextCreator.cs +++ b/itext/itext.html2pdf/itext/html2pdf/ProcessorContextCreator.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext/itext.html2pdf/itext/html2pdf/actions/data/PdfHtmlProductData.cs b/itext/itext.html2pdf/itext/html2pdf/actions/data/PdfHtmlProductData.cs index dd3a465bd..540882673 100644 --- a/itext/itext.html2pdf/itext/html2pdf/actions/data/PdfHtmlProductData.cs +++ b/itext/itext.html2pdf/itext/html2pdf/actions/data/PdfHtmlProductData.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. @@ -33,7 +33,7 @@ namespace iText.Html2pdf.Actions.Data { public sealed class PdfHtmlProductData { private const String PDF_HTML_PUBLIC_PRODUCT_NAME = "pdfHTML"; - private const String PDF_HTML_VERSION = "4.0.5"; + private const String PDF_HTML_VERSION = "5.0.0"; private const int PDF_HTML_COPYRIGHT_SINCE = 2000; diff --git a/itext/itext.html2pdf/itext/html2pdf/actions/events/PdfHtmlProductEvent.cs b/itext/itext.html2pdf/itext/html2pdf/actions/events/PdfHtmlProductEvent.cs index a3fb98adb..826863cee 100644 --- a/itext/itext.html2pdf/itext/html2pdf/actions/events/PdfHtmlProductEvent.cs +++ b/itext/itext.html2pdf/itext/html2pdf/actions/events/PdfHtmlProductEvent.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/Attacher.cs b/itext/itext.html2pdf/itext/html2pdf/attach/Attacher.cs index 38ad1558e..450165a34 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/Attacher.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/Attacher.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System.Collections.Generic; using iText.Html2pdf; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/IHtmlProcessor.cs b/itext/itext.html2pdf/itext/html2pdf/attach/IHtmlProcessor.cs index 142d1f2ef..a444be78a 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/IHtmlProcessor.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/IHtmlProcessor.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System.Collections.Generic; using iText.Kernel.Pdf; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/ITagWorker.cs b/itext/itext.html2pdf/itext/html2pdf/attach/ITagWorker.cs index 55571d6b6..413a29364 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/ITagWorker.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/ITagWorker.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Layout; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/ITagWorkerFactory.cs b/itext/itext.html2pdf/itext/html2pdf/attach/ITagWorkerFactory.cs index 629ffe873..d076730c2 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/ITagWorkerFactory.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/ITagWorkerFactory.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.StyledXmlParser.Node; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/ProcessorContext.cs b/itext/itext.html2pdf/itext/html2pdf/attach/ProcessorContext.cs index 2a655dcc4..69a5d731c 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/ProcessorContext.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/ProcessorContext.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using iText.Commons.Actions.Contexts; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/State.cs b/itext/itext.html2pdf/itext/html2pdf/attach/State.cs index efdb85979..f3d98135a 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/State.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/State.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultHtmlProcessor.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultHtmlProcessor.cs index d2e5c9d53..f78d86dfe 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultHtmlProcessor.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultHtmlProcessor.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; @@ -47,11 +27,11 @@ source product. using iText.Commons.Actions; using iText.Commons.Actions.Sequence; using iText.Commons.Utils; +using iText.Forms.Form.Element; using iText.Html2pdf; using iText.Html2pdf.Actions.Events; using iText.Html2pdf.Attach; using iText.Html2pdf.Attach.Impl.Layout; -using iText.Html2pdf.Attach.Impl.Layout.Form.Element; using iText.Html2pdf.Attach.Impl.Tags; using iText.Html2pdf.Attach.Util; using iText.Html2pdf.Css; @@ -272,6 +252,7 @@ private void Visit(INode node) { RunApplier(element, tagWorker); } context.GetOutlineHandler().AddOutlineAndDestToDocument(tagWorker, element, context); + TextDecorationApplierUtil.PropagateTextDecorationProperties(element); CounterProcessorUtil.StartProcessingCounters(context.GetCssContext(), element); Visit(CreatePseudoElement(element, tagWorker, CssConstants.BEFORE)); Visit(CreatePseudoElement(element, tagWorker, CssConstants.PLACEHOLDER)); diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultTagWorkerFactory.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultTagWorkerFactory.cs index 06a16b595..e78b6c304 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultTagWorkerFactory.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultTagWorkerFactory.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Attach; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultTagWorkerMapping.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultTagWorkerMapping.cs index 8e3b65570..f3d47d56e 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultTagWorkerMapping.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/DefaultTagWorkerMapping.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Attach; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/HtmlMetaInfoContainer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/HtmlMetaInfoContainer.cs index d43843c65..1586e16ea 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/HtmlMetaInfoContainer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/HtmlMetaInfoContainer.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/LinkContext.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/LinkContext.cs index a835f744b..207995fca 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/LinkContext.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/LinkContext.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/OutlineHandler.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/OutlineHandler.cs index 6c42efad5..ceeac6a08 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/OutlineHandler.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/OutlineHandler.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.cs index 541989e53..176c2d3c4 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/BodyHtmlStylesContainer.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/DimensionContainer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/DimensionContainer.cs index e71816844..fe10d9121 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/DimensionContainer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/DimensionContainer.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HeightDimensionContainer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HeightDimensionContainer.cs index 80bd2335d..a096fbd61 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HeightDimensionContainer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HeightDimensionContainer.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/Html2PdfProperty.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/Html2PdfProperty.cs index eb0da9d1b..503ed9514 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/Html2PdfProperty.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/Html2PdfProperty.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ namespace iText.Html2pdf.Attach.Impl.Layout { /// Set of constants that will be used as keys to get and set properties. @@ -53,46 +33,13 @@ public class Html2PdfProperty { /// The Constant PAGE_COUNT_TYPE. public const int PAGE_COUNT_TYPE = PROPERTY_START + 2; - /// The Constant FORM_FIELD_FLATTEN for form related properties. - public const int FORM_FIELD_FLATTEN = PROPERTY_START + 3; - - /// The Constant FORM_FIELD_SIZE. - public const int FORM_FIELD_SIZE = PROPERTY_START + 4; - - /// The Constant FORM_FIELD_VALUE. - public const int FORM_FIELD_VALUE = PROPERTY_START + 5; - - /// The Constant FORM_FIELD_PASSWORD_FLAG. - public const int FORM_FIELD_PASSWORD_FLAG = PROPERTY_START + 6; - - /// The Constant FORM_FIELD_COLS. - public const int FORM_FIELD_COLS = PROPERTY_START + 7; - - /// The Constant FORM_FIELD_ROWS. - public const int FORM_FIELD_ROWS = PROPERTY_START + 8; - - /// The Constant FORM_FIELD_CHECKED. - public const int FORM_FIELD_CHECKED = PROPERTY_START + 9; - /// The Constant BODY_STYLING. - public const int BODY_STYLING = PROPERTY_START + 10; + public const int BODY_STYLING = PROPERTY_START + 3; /// The Constant HTML_STYLING. - public const int HTML_STYLING = PROPERTY_START + 11; - - /// The Constant FORM_FIELD_MULTIPLE. - public const int FORM_FIELD_MULTIPLE = PROPERTY_START + 12; - - /// The Constant FORM_FIELD_SELECTED. - public const int FORM_FIELD_SELECTED = PROPERTY_START + 13; - - /// The Constant FORM_FIELD_SELECTED. - public const int FORM_FIELD_LABEL = PROPERTY_START + 14; - - /// The Constant FORM_ACCESSIBILITY_LANGUAGE. - public const int FORM_ACCESSIBILITY_LANGUAGE = PROPERTY_START + 15; + public const int HTML_STYLING = PROPERTY_START + 4; /// The Constant CAPITALIZE_ELEMENT indicates if an inline element needs to be capitalized. - public const int CAPITALIZE_ELEMENT = PROPERTY_START + 16; + public const int CAPITALIZE_ELEMENT = PROPERTY_START + 5; } } diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.cs index 479b6b51c..8d31c29cf 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlBodyStylesApplierHandler.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlDocument.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlDocument.cs index e7179473d..b4914cd86 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlDocument.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlDocument.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlDocumentRenderer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlDocumentRenderer.cs index 1fec43084..77dd98a30 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlDocumentRenderer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlDocumentRenderer.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlPageBreak.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlPageBreak.cs index dcdfd249f..3e53c9eb9 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlPageBreak.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlPageBreak.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.Layout.Element; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlPageBreakType.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlPageBreakType.cs index 8e32ead20..22c2fc75c 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlPageBreakType.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/HtmlPageBreakType.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ namespace iText.Html2pdf.Attach.Impl.Layout { /// Enumeration of the HTML page break types. diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageContextProcessor.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageContextProcessor.cs index 3cf15954f..dcd1689fa 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageContextProcessor.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageContextProcessor.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageContextProperties.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageContextProperties.cs index b4fce1f40..ee517fb35 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageContextProperties.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageContextProperties.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountElement.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountElement.cs index 9385491d4..146aaa173 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountElement.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountElement.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.Html2pdf.Css.Resolve.Func.Counter; using iText.Html2pdf.Html; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountRenderer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountRenderer.cs index 41b25c7a3..43a94566b 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountRenderer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountRenderer.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountType.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountType.cs index b98e2aa6d..c39fc0bca 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountType.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageCountType.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ namespace iText.Html2pdf.Attach.Impl.Layout { /// Enumeration of page count types. diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageMarginBoxBuilder.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageMarginBoxBuilder.cs index 88cb62db5..5e4505f7a 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageMarginBoxBuilder.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageMarginBoxBuilder.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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. +Copyright (c) 1998-2023 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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageSizeParser.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageSizeParser.cs index f19ef7ada..ad559ccb9 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageSizeParser.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageSizeParser.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using System.Collections.Generic; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageTargetCountElement.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageTargetCountElement.cs index bca0bdc4a..85cbf48a5 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageTargetCountElement.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageTargetCountElement.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageTargetCountRenderer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageTargetCountRenderer.cs index 329772561..c2949822c 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageTargetCountRenderer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/PageTargetCountRenderer.cs @@ -1,7 +1,7 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 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. diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/RunningElement.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/RunningElement.cs index 653742c6b..21b56fbf4 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/RunningElement.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/RunningElement.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.Kernel.Pdf.Tagging; using iText.Layout.Element; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/RunningElementContainer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/RunningElementContainer.cs index c2692ad4a..8b9a13d85 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/RunningElementContainer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/RunningElementContainer.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using iText.Html2pdf.Attach; using iText.StyledXmlParser.Node; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/WidthDimensionContainer.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/WidthDimensionContainer.cs index 9b2c7d063..a73719129 100644 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/WidthDimensionContainer.cs +++ b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/WidthDimensionContainer.cs @@ -1,44 +1,24 @@ /* This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. +Copyright (c) 1998-2023 Apryse Group NV +Authors: Apryse Software. -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS +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. -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. +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. -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. +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 can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see . */ using System; using iText.Html2pdf.Css; diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/AbstractSelectField.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/AbstractSelectField.cs deleted file mode 100644 index d5b7eb315..000000000 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/AbstractSelectField.cs +++ /dev/null @@ -1,73 +0,0 @@ -/* -This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com -*/ -using System; -using System.Collections.Generic; -using iText.Layout.Element; - -namespace iText.Html2pdf.Attach.Impl.Layout.Form.Element { - /// An abstract class for fields that represents a control for selecting one or several of the provided options. - /// - public abstract class AbstractSelectField : FormField { - private IList options = new List(); - - protected internal AbstractSelectField(String id) - : base(id) { - } - - /// Adds a container with option(s). - /// Adds a container with option(s). This might be a container for options group. - /// a container with option(s) - public virtual void AddOption(IBlockElement optionElement) { - options.Add(optionElement); - } - - /// Gets a list of containers with option(s). - /// Gets a list of containers with option(s). Every container might be a container for options group. - /// - /// a list of containers with option(s) - public virtual IList GetOptions() { - return options; - } - } -} diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/Button.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/Button.cs deleted file mode 100644 index 9f3d9e6f8..000000000 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/Button.cs +++ /dev/null @@ -1,93 +0,0 @@ -/* -This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: iText Software. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com -*/ -using System; -using iText.Html2pdf.Attach.Impl.Layout.Form.Renderer; -using iText.Layout.Element; -using iText.Layout.Properties; -using iText.Layout.Renderer; - -namespace iText.Html2pdf.Attach.Impl.Layout.Form.Element { - /// - /// Extension of the - /// - /// class representing a button in html - /// - public class Button : FormField { - public Button(String id) - : base(id) { - } - - protected override IRenderer MakeNewRenderer() { - return new ButtonRenderer(this); - } - - /// Adds any block element to the div's contents. - /// - /// a - /// - /// - /// this Element - public virtual iText.Html2pdf.Attach.Impl.Layout.Form.Element.Button Add(IBlockElement element) { - childElements.Add(element); - return this; - } - - /// Adds an image to the div's contents. - /// - /// an - /// - /// - /// this Element - public virtual iText.Html2pdf.Attach.Impl.Layout.Form.Element.Button Add(Image element) { - childElements.Add(element); - return this; - } - - public override T1 GetDefaultProperty(int property) { - if (property == Property.KEEP_TOGETHER) { - return (T1)(Object)true; - } - return base.GetDefaultProperty(property); - } - } -} diff --git a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/CheckBox.cs b/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/CheckBox.cs deleted file mode 100644 index 21dc133bc..000000000 --- a/itext/itext.html2pdf/itext/html2pdf/attach/impl/layout/form/element/CheckBox.cs +++ /dev/null @@ -1,74 +0,0 @@ -/* -This file is part of the iText (R) project. -Copyright (c) 1998-2023 iText Group NV -Authors: Bruno Lowagie, Paulo Soares, et al. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License version 3 -as published by the Free Software Foundation with the addition of the -following permission added to Section 15 as permitted in Section 7(a): -FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY -ITEXT GROUP. ITEXT GROUP DISCLAIMS THE WARRANTY OF NON INFRINGEMENT -OF THIRD PARTY RIGHTS - -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 http://www.gnu.org/licenses or write to -the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -Boston, MA, 02110-1301 USA, or download the license from the following URL: -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions -of this program must display Appropriate Legal Notices, as required under -Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, -a covered work must retain the producer line in every PDF that is created -or manipulated using iText. - -You can be released from the requirements of the license by purchasing -a commercial license. Buying such a license is mandatory as soon as you -develop commercial activities involving the iText software without -disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, -serving PDFs on the fly in a web application, shipping iText with a closed -source product. - -For more information, please contact iText Software Corp. at this -address: sales@itextpdf.com -*/ -using System; -using iText.Html2pdf.Attach.Impl.Layout.Form.Renderer; -using iText.Layout.Renderer; - -namespace iText.Html2pdf.Attach.Impl.Layout.Form.Element { - /// - /// Extension of the - /// - /// class representing a checkbox so that - /// a - /// - /// is used instead of the default renderer for fields. - /// - public class CheckBox : FormField