Quick Search:

Context

Displaying 3 lines either side each change. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

1640
 
1656
 
1656
 
container.rb
_>384384     end    
 385385     
 386386     
<>387 -    
  387+    #
388388     # Description:
<> 389+    #   Used to access a definition list element - a <dl> HTML tag.
  390+    #
  391+    # Input:
  392+    #   - how - Attribute used to identify the definition list element.
  393+    #   - what - Value of that attribute.
  394+    #
  395+    # Typical Usage:
  396+    #
  397+    #    ff.dl(:id, 'user_name')                    # access the dl element with an ID of user_name
  398+    #    ff.dl(:title, 'address')                   # access the dl element with a title of address
  399+    #
  400+    # Returns:
  401+    #   Dl object.
  402+    #
  403+    def dl(how, what = nil)
  404+      locate if defined?(locate)
  405+      Dl.new(self, how, what)
  406+    end
  407+
  408+    #
  409+    # Description:
  410+    #   Used to access a definition term element - a <dt> HTML tag.
  411+    #
  412+    # Input:
  413+    #   - how  - Attribute used to identify the image element.
  414+    #   - what - Value of that attribute.
  415+    #
  416+    # Typical Usage:
  417+    #
  418+    #    ff.dt(:id, 'user_name')                    # access the dt element with an ID of user_name
  419+    #    ff.dt(:title, 'address')                   # access the dt element with a title of address
  420+    #
  421+    # Returns:
  422+    #   Dt object.
  423+    #
  424+    def dt(how, what = nil)
  425+      locate if defined?(locate)
  426+      Dt.new(self, how, what)
  427+    end
  428+
  429+    #
  430+    # Description:
  431+    #   Used to access a definition description element - a <dd> HTML tag.
  432+    #
  433+    # Input:
  434+    #   - how  - Attribute used to identify the image element.
  435+    #   - what - Value of that attribute.
  436+    #
  437+    # Typical Usage:
  438+    #
  439+    #    ff.dd(:id, 'user_name')                    # access the dd element with an ID of user_name
  440+    #    ff.dd(:title, 'address')                   # access the dd element with a title of address
  441+    #
  442+    # Returns:
  443+    #   Dd object.
  444+    #
  445+    def dd(how, what = nil)
  446+      locate if defined?(locate)
  447+      Dd.new(self, how, what)
  448+    end
  449+
  450+    # Description:
<_389451     #   Searching for Page Elements. Not for external consumption.
 390452     #        
 391453     # def ole_inner_elements