~ubuntu-branches/ubuntu/vivid/libhtml-selector-xpath-perl/vivid-proposed

« back to all changes in this revision

Viewing changes to t/01_xpath.t

  • Committer: Package Import Robot
  • Author(s): gregor herrmann
  • Date: 2011-11-27 13:55:38 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111127135538-58av6gn6qs3q6y83
Tags: 0.12-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
553
553
[x=ab--c]
554
554
--- xpath
555
555
//*[@x='ab--c']
 
556
 
 
557
===
 
558
--- selector
 
559
option[value!=""]
 
560
--- xpath
 
561
//option[@value!='']
 
562
 
 
563
===
 
564
--- selector
 
565
option[ value="" ]
 
566
--- xpath
 
567
//option[@value='']
 
568
 
 
569
===
 
570
--- selector
 
571
tr[class!="wantedClass"]
 
572
  
 
573
--- xpath
 
574
//tr[@class!='wantedClass']