A workaround which can be used for the moment is to traverse the TextFragment elements in the affected pages and set their Clipping to null: foreach (ContentElementBase element in page.Content) { TextFragment text = element as TextFragment; if (text != null) text.Clipping = null; }