Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / ui / views / examples / label_example.cc
index f9c8656..2f82a40 100644 (file)
@@ -82,6 +82,10 @@ void LabelExample::CreateExampleView(View* container) {
       "lines if the text's width exceeds the label's available width."));
   label->SetMultiLine(true);
   container->AddChildView(label);
+
+  label = new Label(WideToUTF16(L"Password!"));
+  label->SetObscured(true);
+  container->AddChildView(label);
 }
 
 }  // namespace examples