[CHANGE] Some cleanups to lib/ohcount/source_file.rb
[ohcount] / test / expected_dir / mxml1.mxml
1 mxml    code    <?xml version="1.0" encoding="utf-8"?>
2 mxml    blank   
3 mxml    code    <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml">
4 mxml    blank   
5 mxml    code            <mx:Style>
6 css     blank   
7 css     code            TextArea {
8 css     code                            backgroundColor: #EEF5EE;
9 css     code                    }
10 css     blank   
11 mxml    code        </mx:Style>
12 mxml    blank   
13 mxml    code        <mx:Script>
14 actionscript    blank   
15 actionscript    code            function copy() {
16 actionscript    code                destination.text=source.text
17 actionscript    code            }
18 actionscript    blank   
19 mxml    code        </mx:Script>
20 mxml    blank   
21 mxml    blank   
22 mxml    code        <mx:TextInput id="source" width="100"/>
23 mxml    code        <mx:Button label="Copy" click="copy()"/>
24 mxml    code        <mx:TextInput id="destination" width="100"/>
25 mxml    blank   
26 mxml    code    </mx:Application>