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

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

Issue 2709473003: Add internals.textAffinity (Closed)
Patch Set: update Created 3 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 boolean isSelectPopupVisible(Node node); 270 boolean isSelectPopupVisible(Node node);
271 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); 271 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex);
272 long selectPopupItemStyleFontHeight(Node select, long itemIndex); 272 long selectPopupItemStyleFontHeight(Node select, long itemIndex);
273 void resetTypeAheadSession(HTMLSelectElement select); 273 void resetTypeAheadSession(HTMLSelectElement select);
274 274
275 readonly attribute Node? visibleSelectionAnchorNode; 275 readonly attribute Node? visibleSelectionAnchorNode;
276 readonly attribute unsigned long visibleSelectionAnchorOffset; 276 readonly attribute unsigned long visibleSelectionAnchorOffset;
277 readonly attribute Node? visibleSelectionFocusNode; 277 readonly attribute Node? visibleSelectionFocusNode;
278 readonly attribute unsigned long visibleSelectionFocusOffset; 278 readonly attribute unsigned long visibleSelectionFocusOffset;
279 [RaisesException] ClientRect selectionBounds(); 279 [RaisesException] ClientRect selectionBounds();
280 readonly attribute DOMString textAffinity;
280 281
281 boolean loseSharedGraphicsContext3D(); 282 boolean loseSharedGraphicsContext3D();
282 283
283 [RaisesException] void forceCompositingUpdate(Document document); 284 [RaisesException] void forceCompositingUpdate(Document document);
284 285
285 void setZoomFactor(float factor); 286 void setZoomFactor(float factor);
286 287
287 [RaisesException] void setShouldRevealPassword(Element element, boolean reve al); 288 [RaisesException] void setShouldRevealPassword(Element element, boolean reve al);
288 289
289 [CallWith=ScriptState] Promise createResolvedPromise(any value); 290 [CallWith=ScriptState] Promise createResolvedPromise(any value);
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 DOMString getProgrammaticScrollAnimationState(Node node); 365 DOMString getProgrammaticScrollAnimationState(Node node);
365 366
366 ClientRect visualRect(Node node); 367 ClientRect visualRect(Node node);
367 368
368 OriginTrialsTest originTrialsTest(); 369 OriginTrialsTest originTrialsTest();
369 370
370 void crash(); 371 void crash();
371 372
372 void setIsLowEndDevice(boolean isLowEndDevice); 373 void setIsLowEndDevice(boolean isLowEndDevice);
373 }; 374 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698