Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: Source/core/testing/Internals.idl

Issue 138433002: Add Autofill preview support for <select> input fields (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 [RaisesException] DOMString viewportAsText(Document document, 110 [RaisesException] DOMString viewportAsText(Document document,
111 float devicePixelRatio, 111 float devicePixelRatio,
112 long availableWidth, 112 long availableWidth,
113 long availableHeight); 113 long availableHeight);
114 114
115 [RaisesException] boolean wasLastChangeUserEdit(Element textField); 115 [RaisesException] boolean wasLastChangeUserEdit(Element textField);
116 [RaisesException] boolean elementShouldAutoComplete(Element inputElement); 116 [RaisesException] boolean elementShouldAutoComplete(Element inputElement);
117 [RaisesException] DOMString suggestedValue(Element inputElement); 117 [RaisesException] DOMString suggestedValue(Element inputElement);
118 [RaisesException] void setSuggestedValue(Element inputElement, DOMString val ue); 118 [RaisesException] void setSuggestedValue(Element inputElement, DOMString val ue);
119 [RaisesException] DOMString originalValue(Element inputElement);
120 [RaisesException] void setOriginalValue(Element inputElement, DOMString valu e);
119 [RaisesException] void setEditingValue(Element inputElement, DOMString value ); 121 [RaisesException] void setEditingValue(Element inputElement, DOMString value );
120 [RaisesException] void setAutofilled(Element inputElement, boolean enabled); 122 [RaisesException] void setAutofilled(Element inputElement, boolean enabled);
121 123
122 [RaisesException] void paintControlTints(Document document); 124 [RaisesException] void paintControlTints(Document document);
123 125
124 [RaisesException] void scrollElementToRect(Element element, long x, long y, long w, long h); 126 [RaisesException] void scrollElementToRect(Element element, long x, long y, long w, long h);
125 127
126 [RaisesException] Range rangeFromLocationAndLength(Element scope, long range Location, long rangeLength); 128 [RaisesException] Range rangeFromLocationAndLength(Element scope, long range Location, long rangeLength);
127 [RaisesException] unsigned long locationFromRange(Element scope, Range range ); 129 [RaisesException] unsigned long locationFromRange(Element scope, Range range );
128 [RaisesException] unsigned long lengthFromRange(Element scope, Range range); 130 [RaisesException] unsigned long lengthFromRange(Element scope, Range range);
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 boolean isSelectPopupVisible(Node node); 269 boolean isSelectPopupVisible(Node node);
268 270
269 [RaisesException] ClientRect selectionBounds(); 271 [RaisesException] ClientRect selectionBounds();
270 272
271 boolean loseSharedGraphicsContext3D(); 273 boolean loseSharedGraphicsContext3D();
272 274
273 [RaisesException] void forceCompositingUpdate(Document document); 275 [RaisesException] void forceCompositingUpdate(Document document);
274 276
275 void setZoomFactor(float factor); 277 void setZoomFactor(float factor);
276 }; 278 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698