summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/WebIDL/valid/xml/sequence.widlprocxml
blob: d5f4564175b93bfabddf6068654bc76181f535d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Definitions SYSTEM "widlprocxml.dtd">
<Definitions>
  <webidl>interface Canvas {
  void drawPolygon(sequence&lt;float> coordinates);
  sequence&lt;float> getInflectionPoints();
};</webidl>
  <Interface name="Canvas" id="::Canvas">
    <webidl>interface Canvas {
  void drawPolygon(sequence&lt;float> coordinates);
  sequence&lt;float> getInflectionPoints();
};</webidl>
    <Operation name="drawPolygon" id="::Canvas::drawPolygon">
      <webidl>  void drawPolygon(sequence&lt;float> coordinates);</webidl>
      <Type type="void"/>
      <ArgumentList>
        <Argument name="coordinates">
          <Type type="sequence">
            <Type type="float"/>
          </Type>
        </Argument>
      </ArgumentList>
    </Operation>
    <Operation name="getInflectionPoints" id="::Canvas::getInflectionPoints">
      <webidl>  sequence&lt;float> getInflectionPoints();</webidl>
      <Type type="sequence">
        <Type type="float"/>
      </Type>
      <ArgumentList/>
    </Operation>
  </Interface>
</Definitions>