You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by sm...@apache.org on 2013/02/15 16:42:15 UTC

svn commit: r1446638 - /pivot/branches/2.0.x/tests/src/org/apache/pivot/tests/issues/pivot_888.bxml

Author: smartini
Date: Fri Feb 15 15:42:15 2013
New Revision: 1446638

URL: http://svn.apache.org/r1446638
Log:
PIVOT-888: the test case

Added:
    pivot/branches/2.0.x/tests/src/org/apache/pivot/tests/issues/pivot_888.bxml

Added: pivot/branches/2.0.x/tests/src/org/apache/pivot/tests/issues/pivot_888.bxml
URL: http://svn.apache.org/viewvc/pivot/branches/2.0.x/tests/src/org/apache/pivot/tests/issues/pivot_888.bxml?rev=1446638&view=auto
==============================================================================
--- pivot/branches/2.0.x/tests/src/org/apache/pivot/tests/issues/pivot_888.bxml (added)
+++ pivot/branches/2.0.x/tests/src/org/apache/pivot/tests/issues/pivot_888.bxml Fri Feb 15 15:42:15 2013
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License,
+Version 2.0 (the "License"); you may not use this file except in
+compliance with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<Window title="Pivot-880" maximized="true"
+    bxml:id="window"
+    xmlns:bxml="http://pivot.apache.org/bxml"
+    xmlns="org.apache.pivot.wtk"
+>
+
+<Form>
+    <Form.Section>
+        <TextInput bxml:id="textInput" text="${textArea.text}"/>
+        <Border>
+            <FillPane minimumWidth="300" minimumHeight="100">
+                <TextArea bxml:id="textArea" text="${textInput.text}"/>
+            </FillPane>
+        </Border>
+    </Form.Section>
+</Form>
+
+</Window>