Skip to content

Commit 672f3a1

Browse files
committedMar 21, 2020
8241291: JCK test javax_swing/text/DefaultStyledDocument/ElementSpec/ESpecCtor.html fails
Reviewed-by: prr
1 parent b4a3809 commit 672f3a1

File tree

2 files changed

+2
-48
lines changed

2 files changed

+2
-48
lines changed
 

‎src/java.desktop/share/classes/javax/swing/text/DefaultStyledDocument.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1264,8 +1264,8 @@ public ElementSpec(AttributeSet a, short type, char[] txt,
12641264
int offs, int len) {
12651265
attr = a;
12661266
this.type = type;
1267-
this.data = txt == null ? null : Arrays.copyOfRange(txt, offs, offs+len);
1268-
this.offs = 0;
1267+
this.data = txt == null ? null : Arrays.copyOf(txt, txt.length);
1268+
this.offs = offs;
12691269
this.len = len;
12701270
this.direction = OriginateDirection;
12711271
}

‎test/jdk/javax/swing/text/html/TestOOMWithLargePreTag.java

-46
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.