// Show that the background is applied with a AlphaComposite.SRC rule,
// that is, the entire contents are directly replaced by the background
// and no compositing is performed.
c = new Color(200, 200, 200, 51);
g2d.setBackground(c);
g2d.clearRect(0, 0, 20, 20);
harness.check(img.isAlphaPremultiplied(), false);
harness.check(g2d.getBackground(), c);
harness.check(img.getRaster().getSample(10, 10, 0), 200);
harness.check(img.getRaster().getSample(10, 10, 1), 200);