dom_glancy 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +21 -0
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +15 -0
  5. data/Gemfile +16 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +35 -0
  8. data/Rakefile +23 -0
  9. data/app/assets/javascripts/application.js +1 -0
  10. data/app/assets/stylesheets/1236_grid.css +21 -0
  11. data/app/assets/stylesheets/720_grid.css +33 -0
  12. data/app/assets/stylesheets/986_grid.css +24 -0
  13. data/app/assets/stylesheets/dom_glancy.css +134 -0
  14. data/app/assets/stylesheets/normalize.css +425 -0
  15. data/app/controllers/dom_glancy_application_controller.rb +8 -0
  16. data/app/controllers/dom_glancy_controller.rb +114 -0
  17. data/app/views/dom_glancy/about.html.erb +3 -0
  18. data/app/views/dom_glancy/artifacts.html.erb +16 -0
  19. data/app/views/dom_glancy/index.html.erb +12 -0
  20. data/app/views/dom_glancy/new.html.erb +15 -0
  21. data/app/views/dom_glancy/path_config.html.erb +8 -0
  22. data/app/views/dom_glancy/show.html.erb +42 -0
  23. data/app/views/layouts/dom_glancy.html.erb +32 -0
  24. data/app/views/shared/_dom_glancy_nav.html.erb +8 -0
  25. data/app/views/shared/_dom_set.html.erb +35 -0
  26. data/config/routes.rb +17 -0
  27. data/dom_glancy.gemspec +26 -0
  28. data/lib/dom_glancy/analysis.rb +141 -0
  29. data/lib/dom_glancy/dom_glancy.rb +121 -0
  30. data/lib/dom_glancy/element.rb +92 -0
  31. data/lib/dom_glancy/locations.rb +49 -0
  32. data/lib/dom_glancy/rails/engine.rb +7 -0
  33. data/lib/dom_glancy/svg.rb +71 -0
  34. data/lib/dom_glancy/version.rb +3 -0
  35. data/lib/dom_glancy.rb +7 -0
  36. data/test/page_objects/dom_glancy/about_page.rb +7 -0
  37. data/test/page_objects/dom_glancy/artifacts_page.rb +7 -0
  38. data/test/page_objects/dom_glancy/config_page.rb +19 -0
  39. data/test/page_objects/dom_glancy/index_page.rb +9 -0
  40. data/test/page_objects/dom_glancy/local_index_page.rb +7 -0
  41. data/test/page_objects/dom_glancy/new_page.rb +7 -0
  42. data/test/page_objects/dom_glancy/show_page.rb +15 -0
  43. data/test/page_objects/dom_glancy/viewer_page.rb +15 -0
  44. data/test/page_objects/navigation.rb +34 -0
  45. data/test/page_objects.rb +13 -0
  46. data/test/selenium/mapping_test.rb +118 -0
  47. data/test/selenium/viewer_test.rb +26 -0
  48. data/test/selenium_test_helper.rb +147 -0
  49. data/test/test_app/Gemfile +10 -0
  50. data/test/test_app/app/assets/stylesheets/local_app.css +25 -0
  51. data/test/test_app/app/controllers/application_controller.rb +2 -0
  52. data/test/test_app/app/controllers/local_controller.rb +8 -0
  53. data/test/test_app/app/views/layouts/local.html.erb +14 -0
  54. data/test/test_app/app/views/local/index.html.erb +45 -0
  55. data/test/test_app/config/database.yml +13 -0
  56. data/test/test_app/config/initializers/dom_glancy_initializer.rb +5 -0
  57. data/test/test_app/config/routes.rb +4 -0
  58. data/test/test_app/config.ru +31 -0
  59. data/test/test_app/test_app.rb +30 -0
  60. data/test/test_helper.rb +43 -0
  61. data/test/test_helpers/kracker_class_for_stubbing.rb +3 -0
  62. data/test/test_helpers/location_helpers.rb +28 -0
  63. data/test/test_objects/test_objects.rb +2031 -0
  64. data/test/unit/analysis_test.rb +111 -0
  65. data/test/unit/element_test.rb +47 -0
  66. data/test/unit/kracker_test.rb +79 -0
  67. data/test/unit/location_test.rb +23 -0
  68. data/watchr_script.rb +3 -0
  69. metadata +199 -0
@@ -0,0 +1,2031 @@
1
+ module DomGlancy
2
+ module TestObjects
3
+ def array_of_elements
4
+ [
5
+ {"id"=>"1", "height"=>238, "visible"=>true, "tag"=>"DIV", "width"=>720, "class"=>"grid", "left"=>43, "top"=>14},
6
+ {"id"=>"2", "height"=>132, "visible"=>true, "tag"=>"DIV", "width"=>700, "class"=>"row", "left"=>53, "top"=>14},
7
+ {"id"=>"3", "height"=>132, "visible"=>true, "tag"=>"DIV", "width"=>340, "class"=>"slot-0-1-2 mm--title_text_main", "left"=>53, "top"=>14},
8
+ {"id"=>"4", "height"=>132, "visible"=>true, "tag"=>"H1", "width"=>340, "class"=>"", "left"=>53, "top"=>14},
9
+ {"id"=>"5", "height"=>0, "visible"=>true, "tag"=>"SPAN", "width"=>0, "class"=>"mm--title_text_sub", "left"=>71, "top"=>86},
10
+ {"id"=>"6", "height"=>55, "visible"=>true, "tag"=>"DIV", "width"=>700, "class"=>"row", "left"=>53, "top"=>160},
11
+ {"id"=>"7", "height"=>55, "visible"=>true, "tag"=>"DIV", "width"=>340, "class"=>"slot-0-1-2", "left"=>53, "top"=>160},
12
+ {"id"=>"8", "height"=>55, "visible"=>true, "tag"=>"H2", "width"=>340, "class"=>"", "left"=>53, "top"=>160},
13
+ {"id"=>"9", "height"=>23, "visible"=>true, "tag"=>"DIV", "width"=>700, "class"=>"row", "left"=>53, "top"=>229},
14
+ {"id"=>"10", "height"=>21, "visible"=>true, "tag"=>"DIV", "width"=>100, "class"=>"slot-0 mm--nav", "left"=>53, "top"=>231},
15
+ {"id"=>"11", "height"=>21, "visible"=>true, "tag"=>"DIV", "width"=>100, "class"=>"slot-1 mm--nav", "left"=>173, "top"=>231}
16
+ ]
17
+ end
18
+
19
+ def array_of_elements_small
20
+ [
21
+ {"id"=>"12", "height"=>238, "visible"=>true, "tag"=>"DIV", "width"=>720, "class"=>"grid", "left"=>43, "top"=>14},
22
+ {"id"=>"14", "height"=>0, "visible"=>true, "tag"=>"SPAN", "width"=>0, "class"=>"mm--title_text_sub", "left"=>71, "top"=>86}
23
+ ]
24
+ end
25
+
26
+ def single_element_hash
27
+ {"id"=>"mm--single_added", "height"=>10, "visible"=>true, "tag"=>"SPAN", "width"=>50, "class"=>"mm--title_text_sub", "left"=>71, "top"=>86}
28
+ end
29
+
30
+ def travis_generated_current_2
31
+ data = <<-DATA
32
+ ---
33
+ - height: 45
34
+ width: 784
35
+ id: ''
36
+ tag: DIV
37
+ class: contain-to-grid fixed
38
+ top: 0
39
+ left: 0
40
+ visible: true
41
+ - height: 45
42
+ width: 784
43
+ id: ''
44
+ tag: NAV
45
+ class: top-bar
46
+ top: 0
47
+ left: 0
48
+ visible: true
49
+ - height: 45
50
+ width: 140
51
+ id: ''
52
+ tag: UL
53
+ class: title-area
54
+ top: 0
55
+ left: 0
56
+ visible: true
57
+ - height: 45
58
+ width: 140
59
+ id: ''
60
+ tag: LI
61
+ class: name
62
+ top: 0
63
+ left: 0
64
+ visible: true
65
+ - height: 45
66
+ width: 140
67
+ id: ''
68
+ tag: H1
69
+ class: ''
70
+ top: 0
71
+ left: 0
72
+ visible: true
73
+ - height: 45
74
+ width: 140
75
+ id: ''
76
+ tag: A
77
+ class: ''
78
+ top: 0
79
+ left: 0
80
+ visible: true
81
+ - height: 0
82
+ width: 0
83
+ id: ''
84
+ tag: LI
85
+ class: toggle-topbar menu-icon
86
+ top: 0
87
+ left: 0
88
+ visible: false
89
+ - height: 0
90
+ width: 0
91
+ id: ''
92
+ tag: A
93
+ class: ''
94
+ top: 0
95
+ left: 0
96
+ visible: false
97
+ - height: 0
98
+ width: 784
99
+ id: ''
100
+ tag: SECTION
101
+ class: top-bar-section
102
+ top: 0
103
+ left: 0
104
+ visible: true
105
+ - height: 45
106
+ width: 504
107
+ id: ''
108
+ tag: UL
109
+ class: right
110
+ top: 0
111
+ left: 280
112
+ visible: true
113
+ - height: 45
114
+ width: 86
115
+ id: ''
116
+ tag: LI
117
+ class: active
118
+ top: 0
119
+ left: 280
120
+ visible: true
121
+ - height: 45
122
+ width: 86
123
+ id: ''
124
+ tag: A
125
+ class: ''
126
+ top: 0
127
+ left: 280
128
+ visible: true
129
+ - height: 45
130
+ width: 94
131
+ id: ''
132
+ tag: LI
133
+ class: active
134
+ top: 0
135
+ left: 366
136
+ visible: true
137
+ - height: 45
138
+ width: 94
139
+ id: ''
140
+ tag: A
141
+ class: ''
142
+ top: 0
143
+ left: 366
144
+ visible: true
145
+ - height: 45
146
+ width: 70
147
+ id: ''
148
+ tag: LI
149
+ class: active
150
+ top: 0
151
+ left: 460
152
+ visible: true
153
+ - height: 45
154
+ width: 70
155
+ id: ''
156
+ tag: A
157
+ class: ''
158
+ top: 0
159
+ left: 460
160
+ visible: true
161
+ - height: 45
162
+ width: 78
163
+ id: ''
164
+ tag: LI
165
+ class: active
166
+ top: 0
167
+ left: 530
168
+ visible: true
169
+ - height: 45
170
+ width: 78
171
+ id: ''
172
+ tag: A
173
+ class: ''
174
+ top: 0
175
+ left: 530
176
+ visible: true
177
+ - height: 45
178
+ width: 78
179
+ id: ''
180
+ tag: LI
181
+ class: active
182
+ top: 0
183
+ left: 608
184
+ visible: true
185
+ - height: 45
186
+ width: 78
187
+ id: ''
188
+ tag: A
189
+ class: ''
190
+ top: 0
191
+ left: 608
192
+ visible: true
193
+ - height: 45
194
+ width: 98
195
+ id: ''
196
+ tag: LI
197
+ class: has-dropdown not-click
198
+ top: 0
199
+ left: 686
200
+ visible: true
201
+ - height: 45
202
+ width: 98
203
+ id: ''
204
+ tag: A
205
+ class: ''
206
+ top: 0
207
+ left: 0
208
+ visible: true
209
+ - height: 0
210
+ width: 0
211
+ id: ''
212
+ tag: UL
213
+ class: dropdown
214
+ top: 0
215
+ left: 0
216
+ visible: false
217
+ - height: 0
218
+ width: 0
219
+ id: ''
220
+ tag: LI
221
+ class: title back js-generated
222
+ top: 0
223
+ left: 0
224
+ visible: false
225
+ - height: 0
226
+ width: 0
227
+ id: ''
228
+ tag: H5
229
+ class: ''
230
+ top: 0
231
+ left: 0
232
+ visible: false
233
+ - height: 0
234
+ width: 0
235
+ id: ''
236
+ tag: A
237
+ class: ''
238
+ top: 0
239
+ left: 0
240
+ visible: false
241
+ - height: 0
242
+ width: 0
243
+ id: ''
244
+ tag: LI
245
+ class: ''
246
+ top: 0
247
+ left: 0
248
+ visible: false
249
+ - height: 0
250
+ width: 0
251
+ id: ''
252
+ tag: A
253
+ class: ''
254
+ top: 0
255
+ left: 0
256
+ visible: false
257
+ - height: 0
258
+ width: 0
259
+ id: ''
260
+ tag: LI
261
+ class: ''
262
+ top: 0
263
+ left: 0
264
+ visible: false
265
+ - height: 0
266
+ width: 0
267
+ id: ''
268
+ tag: A
269
+ class: ''
270
+ top: 0
271
+ left: 0
272
+ visible: false
273
+ - height: 0
274
+ width: 0
275
+ id: ''
276
+ tag: LI
277
+ class: ''
278
+ top: 0
279
+ left: 0
280
+ visible: false
281
+ - height: 0
282
+ width: 0
283
+ id: ''
284
+ tag: A
285
+ class: ''
286
+ top: 0
287
+ left: 0
288
+ visible: false
289
+ - height: 0
290
+ width: 0
291
+ id: ''
292
+ tag: LI
293
+ class: ''
294
+ top: 0
295
+ left: 0
296
+ visible: false
297
+ - height: 0
298
+ width: 0
299
+ id: ''
300
+ tag: A
301
+ class: ''
302
+ top: 0
303
+ left: 0
304
+ visible: false
305
+ - height: 0
306
+ width: 0
307
+ id: ''
308
+ tag: LI
309
+ class: ''
310
+ top: 0
311
+ left: 0
312
+ visible: false
313
+ - height: 0
314
+ width: 0
315
+ id: ''
316
+ tag: A
317
+ class: ''
318
+ top: 0
319
+ left: 0
320
+ visible: false
321
+ - height: 20
322
+ width: 784
323
+ id: ''
324
+ tag: DIV
325
+ class: row
326
+ top: 45
327
+ left: 0
328
+ visible: true
329
+ - height: 20
330
+ width: 784
331
+ id: ''
332
+ tag: DIV
333
+ class: large-3 columns
334
+ top: 45
335
+ left: 0
336
+ visible: true
337
+ - height: 0
338
+ width: 754
339
+ id: ''
340
+ tag: P
341
+ class: notice
342
+ top: 0
343
+ left: 15
344
+ visible: true
345
+ - height: 0
346
+ width: 754
347
+ id: ''
348
+ tag: P
349
+ class: alert
350
+ top: 20
351
+ left: 15
352
+ visible: true
353
+ - height: 0
354
+ width: 784
355
+ id: ''
356
+ tag: DIV
357
+ class: large-9 columns
358
+ top: 65
359
+ left: 0
360
+ visible: true
361
+ - height: 504
362
+ width: 784
363
+ id: ''
364
+ tag: DIV
365
+ class: row
366
+ top: 65
367
+ left: 0
368
+ visible: true
369
+ - height: 504
370
+ width: 784
371
+ id: ''
372
+ tag: DIV
373
+ class: large-12 columns
374
+ top: 65
375
+ left: 0
376
+ visible: true
377
+ - height: 52
378
+ width: 754
379
+ id: ''
380
+ tag: H2
381
+ class: ''
382
+ top: 3
383
+ left: 15
384
+ visible: true
385
+ - height: 409
386
+ width: 754
387
+ id: new_user
388
+ tag: FORM
389
+ class: new_user
390
+ top: 63
391
+ left: 15
392
+ visible: true
393
+ - height: 0
394
+ width: 0
395
+ id: ''
396
+ tag: DIV
397
+ class: ''
398
+ top: 48
399
+ left: 15
400
+ visible: true
401
+ - height: 0
402
+ width: 0
403
+ id: ''
404
+ tag: INPUT
405
+ class: ''
406
+ top: 0
407
+ left: 0
408
+ visible: false
409
+ - height: 93
410
+ width: 754
411
+ id: ''
412
+ tag: P
413
+ class: ''
414
+ top: 63
415
+ left: 15
416
+ visible: true
417
+ - height: 22
418
+ width: 754
419
+ id: ''
420
+ tag: LABEL
421
+ class: ''
422
+ top: 63
423
+ left: 15
424
+ visible: true
425
+ - height: 26
426
+ width: 0
427
+ id: ''
428
+ tag: BR
429
+ class: ''
430
+ top: 93
431
+ left: 15
432
+ visible: true
433
+ - height: 35
434
+ width: 752
435
+ id: user_name
436
+ tag: INPUT
437
+ class: ''
438
+ top: 119
439
+ left: 15
440
+ visible: true
441
+ - height: 75
442
+ width: 754
443
+ id: ''
444
+ tag: DIV
445
+ class: ''
446
+ top: 176
447
+ left: 15
448
+ visible: true
449
+ - height: 14
450
+ width: 754
451
+ id: ''
452
+ tag: LABEL
453
+ class: ''
454
+ top: 176
455
+ left: 15
456
+ visible: true
457
+ - height: 16
458
+ width: 0
459
+ id: ''
460
+ tag: BR
461
+ class: ''
462
+ top: 198
463
+ left: 15
464
+ visible: true
465
+ - height: 35
466
+ width: 752
467
+ id: user_email
468
+ tag: INPUT
469
+ class: ''
470
+ top: 214
471
+ left: 15
472
+ visible: true
473
+ - height: 75
474
+ width: 754
475
+ id: ''
476
+ tag: DIV
477
+ class: ''
478
+ top: 267
479
+ left: 15
480
+ visible: true
481
+ - height: 14
482
+ width: 754
483
+ id: ''
484
+ tag: LABEL
485
+ class: ''
486
+ top: 267
487
+ left: 15
488
+ visible: true
489
+ - height: 16
490
+ width: 0
491
+ id: ''
492
+ tag: BR
493
+ class: ''
494
+ top: 289
495
+ left: 15
496
+ visible: true
497
+ - height: 35
498
+ width: 752
499
+ id: user_password
500
+ tag: INPUT
501
+ class: ''
502
+ top: 305
503
+ left: 15
504
+ visible: true
505
+ - height: 75
506
+ width: 754
507
+ id: ''
508
+ tag: DIV
509
+ class: ''
510
+ top: 358
511
+ left: 15
512
+ visible: true
513
+ - height: 14
514
+ width: 754
515
+ id: ''
516
+ tag: LABEL
517
+ class: ''
518
+ top: 358
519
+ left: 15
520
+ visible: true
521
+ - height: 16
522
+ width: 0
523
+ id: ''
524
+ tag: BR
525
+ class: ''
526
+ top: 380
527
+ left: 15
528
+ visible: true
529
+ - height: 35
530
+ width: 752
531
+ id: user_password_confirmation
532
+ tag: INPUT
533
+ class: ''
534
+ top: 396
535
+ left: 15
536
+ visible: true
537
+ - height: 23
538
+ width: 754
539
+ id: ''
540
+ tag: DIV
541
+ class: ''
542
+ top: 449
543
+ left: 15
544
+ visible: true
545
+ - height: 19
546
+ width: 71
547
+ id: ''
548
+ tag: INPUT
549
+ class: ''
550
+ top: 449
551
+ left: 15
552
+ visible: true
553
+ - height: 0
554
+ width: 0
555
+ id: ''
556
+ tag: A
557
+ class: ''
558
+ top: 471
559
+ left: 15
560
+ visible: true
561
+ - height: 16
562
+ width: 0
563
+ id: ''
564
+ tag: BR
565
+ class: ''
566
+ top: 472
567
+ left: 85
568
+ visible: true
569
+ - height: 0
570
+ width: 0
571
+ id: ''
572
+ tag: A
573
+ class: ''
574
+ top: 487
575
+ left: 15
576
+ visible: true
577
+ - height: 16
578
+ width: 0
579
+ id: ''
580
+ tag: BR
581
+ class: ''
582
+ top: 488
583
+ left: 225
584
+ visible: true
585
+ - height: 0
586
+ width: 0
587
+ id: ''
588
+ tag: SCRIPT
589
+ class: ''
590
+ top: 0
591
+ left: 0
592
+ visible: false
593
+
594
+ DATA
595
+
596
+ YAML::load(data)
597
+ end
598
+
599
+ def travis_local_generated_master_2
600
+ data = <<-DATA
601
+ ---
602
+ - height: 45
603
+ width: 785
604
+ id: ''
605
+ tag: DIV
606
+ class: contain-to-grid fixed
607
+ top: 0
608
+ left: 0
609
+ visible: true
610
+ - height: 45
611
+ width: 785
612
+ id: ''
613
+ tag: NAV
614
+ class: top-bar
615
+ top: 0
616
+ left: 0
617
+ visible: true
618
+ - height: 45
619
+ width: 143
620
+ id: ''
621
+ tag: UL
622
+ class: title-area
623
+ top: 0
624
+ left: 0
625
+ visible: true
626
+ - height: 45
627
+ width: 143
628
+ id: ''
629
+ tag: LI
630
+ class: name
631
+ top: 0
632
+ left: 0
633
+ visible: true
634
+ - height: 45
635
+ width: 143
636
+ id: ''
637
+ tag: H1
638
+ class: ''
639
+ top: 0
640
+ left: 0
641
+ visible: true
642
+ - height: 45
643
+ width: 143
644
+ id: ''
645
+ tag: A
646
+ class: ''
647
+ top: 0
648
+ left: 0
649
+ visible: true
650
+ - height: 0
651
+ width: 0
652
+ id: ''
653
+ tag: LI
654
+ class: toggle-topbar menu-icon
655
+ top: 0
656
+ left: 0
657
+ visible: false
658
+ - height: 0
659
+ width: 0
660
+ id: ''
661
+ tag: A
662
+ class: ''
663
+ top: 0
664
+ left: 0
665
+ visible: false
666
+ - height: 0
667
+ width: 785
668
+ id: ''
669
+ tag: SECTION
670
+ class: top-bar-section
671
+ top: 0
672
+ left: 0
673
+ visible: true
674
+ - height: 45
675
+ width: 497
676
+ id: ''
677
+ tag: UL
678
+ class: right
679
+ top: 0
680
+ left: 288
681
+ visible: true
682
+ - height: 45
683
+ width: 85
684
+ id: ''
685
+ tag: LI
686
+ class: active
687
+ top: 0
688
+ left: 288
689
+ visible: true
690
+ - height: 45
691
+ width: 85
692
+ id: ''
693
+ tag: A
694
+ class: ''
695
+ top: 0
696
+ left: 288
697
+ visible: true
698
+ - height: 45
699
+ width: 93
700
+ id: ''
701
+ tag: LI
702
+ class: active
703
+ top: 0
704
+ left: 373
705
+ visible: true
706
+ - height: 45
707
+ width: 93
708
+ id: ''
709
+ tag: A
710
+ class: ''
711
+ top: 0
712
+ left: 373
713
+ visible: true
714
+ - height: 45
715
+ width: 69
716
+ id: ''
717
+ tag: LI
718
+ class: active
719
+ top: 0
720
+ left: 465
721
+ visible: true
722
+ - height: 45
723
+ width: 69
724
+ id: ''
725
+ tag: A
726
+ class: ''
727
+ top: 0
728
+ left: 465
729
+ visible: true
730
+ - height: 45
731
+ width: 77
732
+ id: ''
733
+ tag: LI
734
+ class: active
735
+ top: 0
736
+ left: 534
737
+ visible: true
738
+ - height: 45
739
+ width: 77
740
+ id: ''
741
+ tag: A
742
+ class: ''
743
+ top: 0
744
+ left: 534
745
+ visible: true
746
+ - height: 45
747
+ width: 77
748
+ id: ''
749
+ tag: LI
750
+ class: active
751
+ top: 0
752
+ left: 611
753
+ visible: true
754
+ - height: 45
755
+ width: 77
756
+ id: ''
757
+ tag: A
758
+ class: ''
759
+ top: 0
760
+ left: 611
761
+ visible: true
762
+ - height: 45
763
+ width: 97
764
+ id: ''
765
+ tag: LI
766
+ class: has-dropdown not-click
767
+ top: 0
768
+ left: 688
769
+ visible: true
770
+ - height: 45
771
+ width: 97
772
+ id: ''
773
+ tag: A
774
+ class: ''
775
+ top: 0
776
+ left: 0
777
+ visible: true
778
+ - height: 0
779
+ width: 0
780
+ id: ''
781
+ tag: UL
782
+ class: dropdown
783
+ top: 0
784
+ left: 0
785
+ visible: false
786
+ - height: 0
787
+ width: 0
788
+ id: ''
789
+ tag: LI
790
+ class: title back js-generated
791
+ top: 0
792
+ left: 0
793
+ visible: false
794
+ - height: 0
795
+ width: 0
796
+ id: ''
797
+ tag: H5
798
+ class: ''
799
+ top: 0
800
+ left: 0
801
+ visible: false
802
+ - height: 0
803
+ width: 0
804
+ id: ''
805
+ tag: A
806
+ class: ''
807
+ top: 0
808
+ left: 0
809
+ visible: false
810
+ - height: 0
811
+ width: 0
812
+ id: ''
813
+ tag: LI
814
+ class: ''
815
+ top: 0
816
+ left: 0
817
+ visible: false
818
+ - height: 0
819
+ width: 0
820
+ id: ''
821
+ tag: A
822
+ class: ''
823
+ top: 0
824
+ left: 0
825
+ visible: false
826
+ - height: 0
827
+ width: 0
828
+ id: ''
829
+ tag: LI
830
+ class: ''
831
+ top: 0
832
+ left: 0
833
+ visible: false
834
+ - height: 0
835
+ width: 0
836
+ id: ''
837
+ tag: A
838
+ class: ''
839
+ top: 0
840
+ left: 0
841
+ visible: false
842
+ - height: 0
843
+ width: 0
844
+ id: ''
845
+ tag: LI
846
+ class: ''
847
+ top: 0
848
+ left: 0
849
+ visible: false
850
+ - height: 0
851
+ width: 0
852
+ id: ''
853
+ tag: A
854
+ class: ''
855
+ top: 0
856
+ left: 0
857
+ visible: false
858
+ - height: 0
859
+ width: 0
860
+ id: ''
861
+ tag: LI
862
+ class: ''
863
+ top: 0
864
+ left: 0
865
+ visible: false
866
+ - height: 0
867
+ width: 0
868
+ id: ''
869
+ tag: A
870
+ class: ''
871
+ top: 0
872
+ left: 0
873
+ visible: false
874
+ - height: 0
875
+ width: 0
876
+ id: ''
877
+ tag: LI
878
+ class: ''
879
+ top: 0
880
+ left: 0
881
+ visible: false
882
+ - height: 0
883
+ width: 0
884
+ id: ''
885
+ tag: A
886
+ class: ''
887
+ top: 0
888
+ left: 0
889
+ visible: false
890
+ - height: 20
891
+ width: 785
892
+ id: ''
893
+ tag: DIV
894
+ class: row
895
+ top: 45
896
+ left: 0
897
+ visible: true
898
+ - height: 20
899
+ width: 785
900
+ id: ''
901
+ tag: DIV
902
+ class: large-3 columns
903
+ top: 45
904
+ left: 0
905
+ visible: true
906
+ - height: 0
907
+ width: 755
908
+ id: ''
909
+ tag: P
910
+ class: notice
911
+ top: 0
912
+ left: 15
913
+ visible: true
914
+ - height: 0
915
+ width: 755
916
+ id: ''
917
+ tag: P
918
+ class: alert
919
+ top: 20
920
+ left: 15
921
+ visible: true
922
+ - height: 0
923
+ width: 785
924
+ id: ''
925
+ tag: DIV
926
+ class: large-9 columns
927
+ top: 65
928
+ left: 0
929
+ visible: true
930
+ - height: 502
931
+ width: 785
932
+ id: ''
933
+ tag: DIV
934
+ class: row
935
+ top: 65
936
+ left: 0
937
+ visible: true
938
+ - height: 502
939
+ width: 785
940
+ id: ''
941
+ tag: DIV
942
+ class: large-12 columns
943
+ top: 65
944
+ left: 0
945
+ visible: true
946
+ - height: 52
947
+ width: 755
948
+ id: ''
949
+ tag: H2
950
+ class: ''
951
+ top: 3
952
+ left: 15
953
+ visible: true
954
+ - height: 407
955
+ width: 755
956
+ id: new_user
957
+ tag: FORM
958
+ class: new_user
959
+ top: 63
960
+ left: 15
961
+ visible: true
962
+ - height: 0
963
+ width: 0
964
+ id: ''
965
+ tag: DIV
966
+ class: ''
967
+ top: 48
968
+ left: 15
969
+ visible: true
970
+ - height: 0
971
+ width: 0
972
+ id: ''
973
+ tag: INPUT
974
+ class: ''
975
+ top: 0
976
+ left: 0
977
+ visible: false
978
+ - height: 93
979
+ width: 755
980
+ id: ''
981
+ tag: P
982
+ class: ''
983
+ top: 63
984
+ left: 15
985
+ visible: true
986
+ - height: 22
987
+ width: 755
988
+ id: ''
989
+ tag: LABEL
990
+ class: ''
991
+ top: 63
992
+ left: 15
993
+ visible: true
994
+ - height: 26
995
+ width: 0
996
+ id: ''
997
+ tag: BR
998
+ class: ''
999
+ top: 93
1000
+ left: 15
1001
+ visible: true
1002
+ - height: 35
1003
+ width: 753
1004
+ id: user_name
1005
+ tag: INPUT
1006
+ class: ''
1007
+ top: 119
1008
+ left: 15
1009
+ visible: true
1010
+ - height: 75
1011
+ width: 755
1012
+ id: ''
1013
+ tag: DIV
1014
+ class: ''
1015
+ top: 176
1016
+ left: 15
1017
+ visible: true
1018
+ - height: 14
1019
+ width: 755
1020
+ id: ''
1021
+ tag: LABEL
1022
+ class: ''
1023
+ top: 176
1024
+ left: 15
1025
+ visible: true
1026
+ - height: 16
1027
+ width: 0
1028
+ id: ''
1029
+ tag: BR
1030
+ class: ''
1031
+ top: 198
1032
+ left: 15
1033
+ visible: true
1034
+ - height: 35
1035
+ width: 753
1036
+ id: user_email
1037
+ tag: INPUT
1038
+ class: ''
1039
+ top: 214
1040
+ left: 15
1041
+ visible: true
1042
+ - height: 75
1043
+ width: 755
1044
+ id: ''
1045
+ tag: DIV
1046
+ class: ''
1047
+ top: 267
1048
+ left: 15
1049
+ visible: true
1050
+ - height: 14
1051
+ width: 755
1052
+ id: ''
1053
+ tag: LABEL
1054
+ class: ''
1055
+ top: 267
1056
+ left: 15
1057
+ visible: true
1058
+ - height: 16
1059
+ width: 0
1060
+ id: ''
1061
+ tag: BR
1062
+ class: ''
1063
+ top: 289
1064
+ left: 15
1065
+ visible: true
1066
+ - height: 35
1067
+ width: 753
1068
+ id: user_password
1069
+ tag: INPUT
1070
+ class: ''
1071
+ top: 305
1072
+ left: 15
1073
+ visible: true
1074
+ - height: 75
1075
+ width: 755
1076
+ id: ''
1077
+ tag: DIV
1078
+ class: ''
1079
+ top: 358
1080
+ left: 15
1081
+ visible: true
1082
+ - height: 14
1083
+ width: 755
1084
+ id: ''
1085
+ tag: LABEL
1086
+ class: ''
1087
+ top: 358
1088
+ left: 15
1089
+ visible: true
1090
+ - height: 16
1091
+ width: 0
1092
+ id: ''
1093
+ tag: BR
1094
+ class: ''
1095
+ top: 380
1096
+ left: 15
1097
+ visible: true
1098
+ - height: 35
1099
+ width: 753
1100
+ id: user_password_confirmation
1101
+ tag: INPUT
1102
+ class: ''
1103
+ top: 396
1104
+ left: 15
1105
+ visible: true
1106
+ - height: 21
1107
+ width: 755
1108
+ id: ''
1109
+ tag: DIV
1110
+ class: ''
1111
+ top: 449
1112
+ left: 15
1113
+ visible: true
1114
+ - height: 16
1115
+ width: 46
1116
+ id: ''
1117
+ tag: INPUT
1118
+ class: ''
1119
+ top: 450
1120
+ left: 15
1121
+ visible: true
1122
+ - height: 0
1123
+ width: 0
1124
+ id: ''
1125
+ tag: A
1126
+ class: ''
1127
+ top: 468
1128
+ left: 15
1129
+ visible: true
1130
+ - height: 16
1131
+ width: 0
1132
+ id: ''
1133
+ tag: BR
1134
+ class: ''
1135
+ top: 470
1136
+ left: 82
1137
+ visible: true
1138
+ - height: 0
1139
+ width: 0
1140
+ id: ''
1141
+ tag: A
1142
+ class: ''
1143
+ top: 484
1144
+ left: 15
1145
+ visible: true
1146
+ - height: 16
1147
+ width: 0
1148
+ id: ''
1149
+ tag: BR
1150
+ class: ''
1151
+ top: 486
1152
+ left: 217
1153
+ visible: true
1154
+ - height: 0
1155
+ width: 0
1156
+ id: ''
1157
+ tag: SCRIPT
1158
+ class: ''
1159
+ top: 0
1160
+ left: 0
1161
+ visible: false
1162
+ DATA
1163
+
1164
+ YAML::load(data)
1165
+ end
1166
+
1167
+
1168
+ def travis_generated_current
1169
+ data = <<-DATA
1170
+ ---
1171
+ - height: 45
1172
+ width: 800
1173
+ id: ''
1174
+ tag: DIV
1175
+ class: contain-to-grid fixed
1176
+ top: 0
1177
+ left: 0
1178
+ visible: true
1179
+ - height: 45
1180
+ width: 800
1181
+ id: ''
1182
+ tag: NAV
1183
+ class: top-bar
1184
+ top: 0
1185
+ left: 0
1186
+ visible: true
1187
+ - height: 45
1188
+ width: 140
1189
+ id: ''
1190
+ tag: UL
1191
+ class: title-area
1192
+ top: 0
1193
+ left: 0
1194
+ visible: true
1195
+ - height: 45
1196
+ width: 140
1197
+ id: ''
1198
+ tag: LI
1199
+ class: name
1200
+ top: 0
1201
+ left: 0
1202
+ visible: true
1203
+ - height: 45
1204
+ width: 140
1205
+ id: ''
1206
+ tag: H1
1207
+ class: ''
1208
+ top: 0
1209
+ left: 0
1210
+ visible: true
1211
+ - height: 45
1212
+ width: 140
1213
+ id: ''
1214
+ tag: A
1215
+ class: ''
1216
+ top: 0
1217
+ left: 0
1218
+ visible: true
1219
+ - height: 0
1220
+ width: 0
1221
+ id: ''
1222
+ tag: LI
1223
+ class: toggle-topbar menu-icon
1224
+ top: 0
1225
+ left: 0
1226
+ visible: false
1227
+ - height: 0
1228
+ width: 0
1229
+ id: ''
1230
+ tag: A
1231
+ class: ''
1232
+ top: 0
1233
+ left: 0
1234
+ visible: false
1235
+ - height: 0
1236
+ width: 800
1237
+ id: ''
1238
+ tag: SECTION
1239
+ class: top-bar-section
1240
+ top: 0
1241
+ left: 0
1242
+ visible: true
1243
+ - height: 45
1244
+ width: 504
1245
+ id: ''
1246
+ tag: UL
1247
+ class: right
1248
+ top: 0
1249
+ left: 296
1250
+ visible: true
1251
+ - height: 45
1252
+ width: 86
1253
+ id: ''
1254
+ tag: LI
1255
+ class: active
1256
+ top: 0
1257
+ left: 296
1258
+ visible: true
1259
+ - height: 45
1260
+ width: 86
1261
+ id: ''
1262
+ tag: A
1263
+ class: ''
1264
+ top: 0
1265
+ left: 296
1266
+ visible: true
1267
+ - height: 45
1268
+ width: 94
1269
+ id: ''
1270
+ tag: LI
1271
+ class: active
1272
+ top: 0
1273
+ left: 382
1274
+ visible: true
1275
+ - height: 45
1276
+ width: 94
1277
+ id: ''
1278
+ tag: A
1279
+ class: ''
1280
+ top: 0
1281
+ left: 382
1282
+ visible: true
1283
+ - height: 45
1284
+ width: 70
1285
+ id: ''
1286
+ tag: LI
1287
+ class: active
1288
+ top: 0
1289
+ left: 476
1290
+ visible: true
1291
+ - height: 45
1292
+ width: 70
1293
+ id: ''
1294
+ tag: A
1295
+ class: ''
1296
+ top: 0
1297
+ left: 476
1298
+ visible: true
1299
+ - height: 45
1300
+ width: 78
1301
+ id: ''
1302
+ tag: LI
1303
+ class: active
1304
+ top: 0
1305
+ left: 546
1306
+ visible: true
1307
+ - height: 45
1308
+ width: 78
1309
+ id: ''
1310
+ tag: A
1311
+ class: ''
1312
+ top: 0
1313
+ left: 546
1314
+ visible: true
1315
+ - height: 45
1316
+ width: 78
1317
+ id: ''
1318
+ tag: LI
1319
+ class: active
1320
+ top: 0
1321
+ left: 624
1322
+ visible: true
1323
+ - height: 45
1324
+ width: 78
1325
+ id: ''
1326
+ tag: A
1327
+ class: ''
1328
+ top: 0
1329
+ left: 624
1330
+ visible: true
1331
+ - height: 45
1332
+ width: 98
1333
+ id: ''
1334
+ tag: LI
1335
+ class: has-dropdown not-click
1336
+ top: 0
1337
+ left: 702
1338
+ visible: true
1339
+ - height: 45
1340
+ width: 98
1341
+ id: ''
1342
+ tag: A
1343
+ class: ''
1344
+ top: 0
1345
+ left: 0
1346
+ visible: true
1347
+ - height: 0
1348
+ width: 0
1349
+ id: ''
1350
+ tag: UL
1351
+ class: dropdown
1352
+ top: 0
1353
+ left: 0
1354
+ visible: false
1355
+ - height: 0
1356
+ width: 0
1357
+ id: ''
1358
+ tag: LI
1359
+ class: title back js-generated
1360
+ top: 0
1361
+ left: 0
1362
+ visible: false
1363
+ - height: 0
1364
+ width: 0
1365
+ id: ''
1366
+ tag: H5
1367
+ class: ''
1368
+ top: 0
1369
+ left: 0
1370
+ visible: false
1371
+ - height: 0
1372
+ width: 0
1373
+ id: ''
1374
+ tag: A
1375
+ class: ''
1376
+ top: 0
1377
+ left: 0
1378
+ visible: false
1379
+ - height: 0
1380
+ width: 0
1381
+ id: ''
1382
+ tag: LI
1383
+ class: ''
1384
+ top: 0
1385
+ left: 0
1386
+ visible: false
1387
+ - height: 0
1388
+ width: 0
1389
+ id: ''
1390
+ tag: A
1391
+ class: ''
1392
+ top: 0
1393
+ left: 0
1394
+ visible: false
1395
+ - height: 0
1396
+ width: 0
1397
+ id: ''
1398
+ tag: LI
1399
+ class: ''
1400
+ top: 0
1401
+ left: 0
1402
+ visible: false
1403
+ - height: 0
1404
+ width: 0
1405
+ id: ''
1406
+ tag: A
1407
+ class: ''
1408
+ top: 0
1409
+ left: 0
1410
+ visible: false
1411
+ - height: 0
1412
+ width: 0
1413
+ id: ''
1414
+ tag: LI
1415
+ class: ''
1416
+ top: 0
1417
+ left: 0
1418
+ visible: false
1419
+ - height: 0
1420
+ width: 0
1421
+ id: ''
1422
+ tag: A
1423
+ class: ''
1424
+ top: 0
1425
+ left: 0
1426
+ visible: false
1427
+ - height: 0
1428
+ width: 0
1429
+ id: ''
1430
+ tag: LI
1431
+ class: ''
1432
+ top: 0
1433
+ left: 0
1434
+ visible: false
1435
+ - height: 0
1436
+ width: 0
1437
+ id: ''
1438
+ tag: A
1439
+ class: ''
1440
+ top: 0
1441
+ left: 0
1442
+ visible: false
1443
+ - height: 0
1444
+ width: 0
1445
+ id: ''
1446
+ tag: LI
1447
+ class: ''
1448
+ top: 0
1449
+ left: 0
1450
+ visible: false
1451
+ - height: 0
1452
+ width: 0
1453
+ id: ''
1454
+ tag: A
1455
+ class: ''
1456
+ top: 0
1457
+ left: 0
1458
+ visible: false
1459
+ - height: 20
1460
+ width: 800
1461
+ id: ''
1462
+ tag: DIV
1463
+ class: row
1464
+ top: 45
1465
+ left: 0
1466
+ visible: true
1467
+ - height: 20
1468
+ width: 800
1469
+ id: ''
1470
+ tag: DIV
1471
+ class: large-3 columns
1472
+ top: 45
1473
+ left: 0
1474
+ visible: true
1475
+ - height: 0
1476
+ width: 770
1477
+ id: ''
1478
+ tag: P
1479
+ class: notice
1480
+ top: 0
1481
+ left: 15
1482
+ visible: true
1483
+ - height: 0
1484
+ width: 770
1485
+ id: ''
1486
+ tag: P
1487
+ class: alert
1488
+ top: 20
1489
+ left: 15
1490
+ visible: true
1491
+ - height: 0
1492
+ width: 800
1493
+ id: ''
1494
+ tag: DIV
1495
+ class: large-9 columns
1496
+ top: 65
1497
+ left: 0
1498
+ visible: true
1499
+ - height: 164
1500
+ width: 800
1501
+ id: ''
1502
+ tag: DIV
1503
+ class: row
1504
+ top: 65
1505
+ left: 0
1506
+ visible: true
1507
+ - height: 164
1508
+ width: 800
1509
+ id: ''
1510
+ tag: DIV
1511
+ class: large-12 columns
1512
+ top: 65
1513
+ left: 0
1514
+ visible: true
1515
+ - height: 73
1516
+ width: 800
1517
+ id: ''
1518
+ tag: DIV
1519
+ class: row
1520
+ top: 0
1521
+ left: 0
1522
+ visible: true
1523
+ - height: 73
1524
+ width: 800
1525
+ id: ''
1526
+ tag: DIV
1527
+ class: large-3 columns
1528
+ top: 0
1529
+ left: 0
1530
+ visible: true
1531
+ - height: 62
1532
+ width: 770
1533
+ id: ''
1534
+ tag: H1
1535
+ class: ''
1536
+ top: 3
1537
+ left: 15
1538
+ visible: true
1539
+ - height: 0
1540
+ width: 800
1541
+ id: ''
1542
+ tag: DIV
1543
+ class: large-9 columns
1544
+ top: 73
1545
+ left: 0
1546
+ visible: true
1547
+ - height: 26
1548
+ width: 770
1549
+ id: ''
1550
+ tag: P
1551
+ class: ''
1552
+ top: 73
1553
+ left: 15
1554
+ visible: true
1555
+ - height: 0
1556
+ width: 0
1557
+ id: ''
1558
+ tag: B
1559
+ class: ''
1560
+ top: 76
1561
+ left: 125
1562
+ visible: true
1563
+ - height: 26
1564
+ width: 770
1565
+ id: ''
1566
+ tag: P
1567
+ class: ''
1568
+ top: 118
1569
+ left: 15
1570
+ visible: true
1571
+ - height: 0
1572
+ width: 0
1573
+ id: ''
1574
+ tag: A
1575
+ class: ''
1576
+ top: 122
1577
+ left: 135
1578
+ visible: true
1579
+ - height: 0
1580
+ width: 0
1581
+ id: ''
1582
+ tag: B
1583
+ class: ''
1584
+ top: 122
1585
+ left: 305
1586
+ visible: true
1587
+ - height: 0
1588
+ width: 0
1589
+ id: ''
1590
+ tag: SCRIPT
1591
+ class: ''
1592
+ top: 0
1593
+ left: 0
1594
+ visible: false
1595
+ DATA
1596
+ YAML::load(data)
1597
+ end
1598
+
1599
+ def travis_local_generated_master
1600
+ data = <<-DATA
1601
+ ---
1602
+ - height: 45
1603
+ width: 800
1604
+ id: ''
1605
+ tag: DIV
1606
+ class: contain-to-grid fixed
1607
+ top: 0
1608
+ left: 0
1609
+ visible: true
1610
+ - height: 45
1611
+ width: 800
1612
+ id: ''
1613
+ tag: NAV
1614
+ class: top-bar
1615
+ top: 0
1616
+ left: 0
1617
+ visible: true
1618
+ - height: 45
1619
+ width: 143
1620
+ id: ''
1621
+ tag: UL
1622
+ class: title-area
1623
+ top: 0
1624
+ left: 0
1625
+ visible: true
1626
+ - height: 45
1627
+ width: 143
1628
+ id: ''
1629
+ tag: LI
1630
+ class: name
1631
+ top: 0
1632
+ left: 0
1633
+ visible: true
1634
+ - height: 45
1635
+ width: 143
1636
+ id: ''
1637
+ tag: H1
1638
+ class: ''
1639
+ top: 0
1640
+ left: 0
1641
+ visible: true
1642
+ - height: 45
1643
+ width: 143
1644
+ id: ''
1645
+ tag: A
1646
+ class: ''
1647
+ top: 0
1648
+ left: 0
1649
+ visible: true
1650
+ - height: 0
1651
+ width: 0
1652
+ id: ''
1653
+ tag: LI
1654
+ class: toggle-topbar menu-icon
1655
+ top: 0
1656
+ left: 0
1657
+ visible: false
1658
+ - height: 0
1659
+ width: 0
1660
+ id: ''
1661
+ tag: A
1662
+ class: ''
1663
+ top: 0
1664
+ left: 0
1665
+ visible: false
1666
+ - height: 0
1667
+ width: 800
1668
+ id: ''
1669
+ tag: SECTION
1670
+ class: top-bar-section
1671
+ top: 0
1672
+ left: 0
1673
+ visible: true
1674
+ - height: 45
1675
+ width: 497
1676
+ id: ''
1677
+ tag: UL
1678
+ class: right
1679
+ top: 0
1680
+ left: 303
1681
+ visible: true
1682
+ - height: 45
1683
+ width: 85
1684
+ id: ''
1685
+ tag: LI
1686
+ class: active
1687
+ top: 0
1688
+ left: 303
1689
+ visible: true
1690
+ - height: 45
1691
+ width: 85
1692
+ id: ''
1693
+ tag: A
1694
+ class: ''
1695
+ top: 0
1696
+ left: 303
1697
+ visible: true
1698
+ - height: 45
1699
+ width: 93
1700
+ id: ''
1701
+ tag: LI
1702
+ class: active
1703
+ top: 0
1704
+ left: 388
1705
+ visible: true
1706
+ - height: 45
1707
+ width: 93
1708
+ id: ''
1709
+ tag: A
1710
+ class: ''
1711
+ top: 0
1712
+ left: 388
1713
+ visible: true
1714
+ - height: 45
1715
+ width: 69
1716
+ id: ''
1717
+ tag: LI
1718
+ class: active
1719
+ top: 0
1720
+ left: 480
1721
+ visible: true
1722
+ - height: 45
1723
+ width: 69
1724
+ id: ''
1725
+ tag: A
1726
+ class: ''
1727
+ top: 0
1728
+ left: 480
1729
+ visible: true
1730
+ - height: 45
1731
+ width: 77
1732
+ id: ''
1733
+ tag: LI
1734
+ class: active
1735
+ top: 0
1736
+ left: 549
1737
+ visible: true
1738
+ - height: 45
1739
+ width: 77
1740
+ id: ''
1741
+ tag: A
1742
+ class: ''
1743
+ top: 0
1744
+ left: 549
1745
+ visible: true
1746
+ - height: 45
1747
+ width: 77
1748
+ id: ''
1749
+ tag: LI
1750
+ class: active
1751
+ top: 0
1752
+ left: 626
1753
+ visible: true
1754
+ - height: 45
1755
+ width: 77
1756
+ id: ''
1757
+ tag: A
1758
+ class: ''
1759
+ top: 0
1760
+ left: 626
1761
+ visible: true
1762
+ - height: 45
1763
+ width: 97
1764
+ id: ''
1765
+ tag: LI
1766
+ class: has-dropdown not-click
1767
+ top: 0
1768
+ left: 703
1769
+ visible: true
1770
+ - height: 45
1771
+ width: 97
1772
+ id: ''
1773
+ tag: A
1774
+ class: ''
1775
+ top: 0
1776
+ left: 0
1777
+ visible: true
1778
+ - height: 0
1779
+ width: 0
1780
+ id: ''
1781
+ tag: UL
1782
+ class: dropdown
1783
+ top: 0
1784
+ left: 0
1785
+ visible: false
1786
+ - height: 0
1787
+ width: 0
1788
+ id: ''
1789
+ tag: LI
1790
+ class: title back js-generated
1791
+ top: 0
1792
+ left: 0
1793
+ visible: false
1794
+ - height: 0
1795
+ width: 0
1796
+ id: ''
1797
+ tag: H5
1798
+ class: ''
1799
+ top: 0
1800
+ left: 0
1801
+ visible: false
1802
+ - height: 0
1803
+ width: 0
1804
+ id: ''
1805
+ tag: A
1806
+ class: ''
1807
+ top: 0
1808
+ left: 0
1809
+ visible: false
1810
+ - height: 0
1811
+ width: 0
1812
+ id: ''
1813
+ tag: LI
1814
+ class: ''
1815
+ top: 0
1816
+ left: 0
1817
+ visible: false
1818
+ - height: 0
1819
+ width: 0
1820
+ id: ''
1821
+ tag: A
1822
+ class: ''
1823
+ top: 0
1824
+ left: 0
1825
+ visible: false
1826
+ - height: 0
1827
+ width: 0
1828
+ id: ''
1829
+ tag: LI
1830
+ class: ''
1831
+ top: 0
1832
+ left: 0
1833
+ visible: false
1834
+ - height: 0
1835
+ width: 0
1836
+ id: ''
1837
+ tag: A
1838
+ class: ''
1839
+ top: 0
1840
+ left: 0
1841
+ visible: false
1842
+ - height: 0
1843
+ width: 0
1844
+ id: ''
1845
+ tag: LI
1846
+ class: ''
1847
+ top: 0
1848
+ left: 0
1849
+ visible: false
1850
+ - height: 0
1851
+ width: 0
1852
+ id: ''
1853
+ tag: A
1854
+ class: ''
1855
+ top: 0
1856
+ left: 0
1857
+ visible: false
1858
+ - height: 0
1859
+ width: 0
1860
+ id: ''
1861
+ tag: LI
1862
+ class: ''
1863
+ top: 0
1864
+ left: 0
1865
+ visible: false
1866
+ - height: 0
1867
+ width: 0
1868
+ id: ''
1869
+ tag: A
1870
+ class: ''
1871
+ top: 0
1872
+ left: 0
1873
+ visible: false
1874
+ - height: 0
1875
+ width: 0
1876
+ id: ''
1877
+ tag: LI
1878
+ class: ''
1879
+ top: 0
1880
+ left: 0
1881
+ visible: false
1882
+ - height: 0
1883
+ width: 0
1884
+ id: ''
1885
+ tag: A
1886
+ class: ''
1887
+ top: 0
1888
+ left: 0
1889
+ visible: false
1890
+ - height: 20
1891
+ width: 800
1892
+ id: ''
1893
+ tag: DIV
1894
+ class: row
1895
+ top: 45
1896
+ left: 0
1897
+ visible: true
1898
+ - height: 20
1899
+ width: 800
1900
+ id: ''
1901
+ tag: DIV
1902
+ class: large-3 columns
1903
+ top: 45
1904
+ left: 0
1905
+ visible: true
1906
+ - height: 0
1907
+ width: 770
1908
+ id: ''
1909
+ tag: P
1910
+ class: notice
1911
+ top: 0
1912
+ left: 15
1913
+ visible: true
1914
+ - height: 0
1915
+ width: 770
1916
+ id: ''
1917
+ tag: P
1918
+ class: alert
1919
+ top: 20
1920
+ left: 15
1921
+ visible: true
1922
+ - height: 0
1923
+ width: 800
1924
+ id: ''
1925
+ tag: DIV
1926
+ class: large-9 columns
1927
+ top: 65
1928
+ left: 0
1929
+ visible: true
1930
+ - height: 164
1931
+ width: 800
1932
+ id: ''
1933
+ tag: DIV
1934
+ class: row
1935
+ top: 65
1936
+ left: 0
1937
+ visible: true
1938
+ - height: 164
1939
+ width: 800
1940
+ id: ''
1941
+ tag: DIV
1942
+ class: large-12 columns
1943
+ top: 65
1944
+ left: 0
1945
+ visible: true
1946
+ - height: 73
1947
+ width: 800
1948
+ id: ''
1949
+ tag: DIV
1950
+ class: row
1951
+ top: 0
1952
+ left: 0
1953
+ visible: true
1954
+ - height: 73
1955
+ width: 800
1956
+ id: ''
1957
+ tag: DIV
1958
+ class: large-3 columns
1959
+ top: 0
1960
+ left: 0
1961
+ visible: true
1962
+ - height: 62
1963
+ width: 770
1964
+ id: ''
1965
+ tag: H1
1966
+ class: ''
1967
+ top: 3
1968
+ left: 15
1969
+ visible: true
1970
+ - height: 0
1971
+ width: 800
1972
+ id: ''
1973
+ tag: DIV
1974
+ class: large-9 columns
1975
+ top: 73
1976
+ left: 0
1977
+ visible: true
1978
+ - height: 26
1979
+ width: 770
1980
+ id: ''
1981
+ tag: P
1982
+ class: ''
1983
+ top: 73
1984
+ left: 15
1985
+ visible: true
1986
+ - height: 0
1987
+ width: 0
1988
+ id: ''
1989
+ tag: B
1990
+ class: ''
1991
+ top: 76
1992
+ left: 121
1993
+ visible: true
1994
+ - height: 26
1995
+ width: 770
1996
+ id: ''
1997
+ tag: P
1998
+ class: ''
1999
+ top: 118
2000
+ left: 15
2001
+ visible: true
2002
+ - height: 0
2003
+ width: 0
2004
+ id: ''
2005
+ tag: A
2006
+ class: ''
2007
+ top: 122
2008
+ left: 130
2009
+ visible: true
2010
+ - height: 0
2011
+ width: 0
2012
+ id: ''
2013
+ tag: B
2014
+ class: ''
2015
+ top: 122
2016
+ left: 294
2017
+ visible: true
2018
+ - height: 0
2019
+ width: 0
2020
+ id: ''
2021
+ tag: SCRIPT
2022
+ class: ''
2023
+ top: 0
2024
+ left: 0
2025
+ visible: false
2026
+
2027
+ DATA
2028
+ YAML::load(data)
2029
+ end
2030
+ end
2031
+ end