summaryrefslogtreecommitdiff
path: root/android/testData/dom
diff options
context:
space:
mode:
authorEugene Kudelevsky <Eugene.Kudelevsky@jetbrains.com>2013-08-29 16:28:23 +0400
committerEugene Kudelevsky <Eugene.Kudelevsky@jetbrains.com>2013-08-29 16:28:23 +0400
commit572aa60c7ef695c4720a89e5eba45c554ed5a513 (patch)
tree0e3cb2b21cc07df9f8d6f7a5ecf569b78624af54 /android/testData/dom
parente89b79c94ffd56fa14570b72e40ef392c898d601 (diff)
downloadidea-572aa60c7ef695c4720a89e5eba45c554ed5a513.tar.gz
IDEA-112689 correct support of custom views with custom attributes in library projects
Diffstat (limited to 'android/testData/dom')
-rw-r--r--android/testData/dom/layout/can4.xml2
-rw-r--r--android/testData/dom/layout/can4_after.xml4
-rw-r--r--android/testData/dom/layout/can5.xml3
-rw-r--r--android/testData/dom/layout/can5_after.xml4
4 files changed, 10 insertions, 3 deletions
diff --git a/android/testData/dom/layout/can4.xml b/android/testData/dom/layout/can4.xml
index 5de39793d24..f53d1e633e0 100644
--- a/android/testData/dom/layout/can4.xml
+++ b/android/testData/dom/layout/can4.xml
@@ -1,4 +1,4 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/p1.unknown">
- <p1.p2.LabelView testSiz<caret>/>
+ <p1.p2.LabelView textSiz<caret>/>
</LinearLayout>
diff --git a/android/testData/dom/layout/can4_after.xml b/android/testData/dom/layout/can4_after.xml
index 15648653960..ffe4286a1c8 100644
--- a/android/testData/dom/layout/can4_after.xml
+++ b/android/testData/dom/layout/can4_after.xml
@@ -1,5 +1,5 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/p1.unknown"
- xmlns:app="http://schemas.android.com/apk/res/p1.p2">
- <p1.p2.LabelView app:textSize="" />
+ xmlns:app1="http://schemas.android.com/apk/res/p1.p2">
+ <p1.p2.LabelView app1:textSize=""/>
</LinearLayout>
diff --git a/android/testData/dom/layout/can5.xml b/android/testData/dom/layout/can5.xml
new file mode 100644
index 00000000000..ce5d700701f
--- /dev/null
+++ b/android/testData/dom/layout/can5.xml
@@ -0,0 +1,3 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
+ <p1.p2.LabelView textSiz<caret> />
+</LinearLayout>
diff --git a/android/testData/dom/layout/can5_after.xml b/android/testData/dom/layout/can5_after.xml
new file mode 100644
index 00000000000..54db33d0411
--- /dev/null
+++ b/android/testData/dom/layout/can5_after.xml
@@ -0,0 +1,4 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto">
+ <p1.p2.LabelView app:textSize="" />
+</LinearLayout>