We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc141d commit a9af64dCopy full SHA for a9af64d
styled-xml-parser/src/main/java/com/itextpdf/styledxmlparser/css/media/MediaExpression.java
@@ -203,7 +203,7 @@ public boolean matches(MediaDeviceDescription deviceDescription) {
203
*/
204
private static float parseAbsoluteLength(String value) {
205
if (CssTypesValidationUtils.isRelativeValue(value)) {
206
- // TODO Use some shared default value (from default.css or CssDefaults)
+ // TODO DEVSIX-6365 Use some shared default value (from default.css or CssDefaults)
207
// rather than a constant of this class
208
return CssDimensionParsingUtils.parseRelativeValue(value, DEFAULT_FONT_SIZE);
209
} else {
0 commit comments