| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2009 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 // http://dev.w3.org/fxtf/geometry/#DOMRectList | 33 // http://dev.w3.org/fxtf/geometry/#DOMRectList |
| 34 | 34 |
| 35 // CSSOM View Module also says: "The DOMRectList interface is at-risk. | 35 // CSSOM View Module also says: "The DOMRectList interface is at-risk. |
| 36 // The authors of this specification await feedback from implementers | 36 // The authors of this specification await feedback from implementers |
| 37 // if the item() function of DOMRectList is currently in use on legacy | 37 // if the item() function of DOMRectList is currently in use on legacy |
| 38 // interfaces. If there is no/not enough content to justify | 38 // interfaces. If there is no/not enough content to justify |
| 39 // DOMRectList, legacy interfaces must use sequences instead and | 39 // DOMRectList, legacy interfaces must use sequences instead and |
| 40 // DOMRectList will be removed from this specification." | 40 // DOMRectList will be removed from this specification." |
| 41 | 41 |
| 42 [ | 42 [ |
| 43 WillBeGarbageCollected, | 43 GarbageCollected, |
| 44 ] interface ClientRectList { | 44 ] interface ClientRectList { |
| 45 readonly attribute unsigned long length; | 45 readonly attribute unsigned long length; |
| 46 [MeasureAs=ClientRectListItem] ClientRect item(unsigned long index); | 46 [MeasureAs=ClientRectListItem] ClientRect item(unsigned long index); |
| 47 getter ClientRect (unsigned long index); | 47 getter ClientRect (unsigned long index); |
| 48 }; | 48 }; |
| OLD | NEW |