package com.vaadin.tests.tickets; import com.vaadin.Application; import com.vaadin.shared.ui.label.ContentMode; import com.vaadin.ui.Label; import com.vaadin.ui.UI.LegacyWindow; public class Ticket5952 extends Application.LegacyApplication { @Override public void init() { final LegacyWindow mainWindow = new LegacyWindow( "Forumtests Application"); setMainWindow(mainWindow); String mathml = "" + "" + " " + " x" + " 2" + " " + " " + " c" + " 2" + " " + " " + ""; Label mathLabel = new Label(mathml, ContentMode.XML); mainWindow.addComponent(mathLabel); } }