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

Side by Side Diff: testing/InternalSettings.idl

Issue 13601015: Roll Blink IDLs forward. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « page/DOMWindow.idl ('k') | testing/Internals.idl » ('j') | 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 * 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 26 matching lines...) Expand all
37 void setSansSerifFontFamily(in DOMString family, in DOMString script) raises (DOMException); 37 void setSansSerifFontFamily(in DOMString family, in DOMString script) raises (DOMException);
38 void setFixedFontFamily(in DOMString family, in DOMString script) raises(DOM Exception); 38 void setFixedFontFamily(in DOMString family, in DOMString script) raises(DOM Exception);
39 void setCursiveFontFamily(in DOMString family, in DOMString script) raises(D OMException); 39 void setCursiveFontFamily(in DOMString family, in DOMString script) raises(D OMException);
40 void setFantasyFontFamily(in DOMString family, in DOMString script) raises(D OMException); 40 void setFantasyFontFamily(in DOMString family, in DOMString script) raises(D OMException);
41 void setPictographFontFamily(in DOMString family, in DOMString script) raise s(DOMException); 41 void setPictographFontFamily(in DOMString family, in DOMString script) raise s(DOMException);
42 void setTextAutosizingEnabled(in boolean enabled) raises(DOMException); 42 void setTextAutosizingEnabled(in boolean enabled) raises(DOMException);
43 void setTextAutosizingWindowSizeOverride(in long width, in long height) rais es(DOMException); 43 void setTextAutosizingWindowSizeOverride(in long width, in long height) rais es(DOMException);
44 void setTextAutosizingFontScaleFactor(in float fontScaleFactor) raises(DOMEx ception); 44 void setTextAutosizingFontScaleFactor(in float fontScaleFactor) raises(DOMEx ception);
45 void setResolutionOverride(in long dotsPerCSSInchHorizontally, in long dotsP erCSSInchVertically) raises(DOMException); 45 void setResolutionOverride(in long dotsPerCSSInchHorizontally, in long dotsP erCSSInchVertically) raises(DOMException);
46 void setMediaTypeOverride(in DOMString mediaTypeOverride) raises(DOMExceptio n); 46 void setMediaTypeOverride(in DOMString mediaTypeOverride) raises(DOMExceptio n);
47 void setEnableScrollAnimator(in boolean enabled) raises(DOMException);
48 boolean scrollAnimatorEnabled() raises(DOMException);
49 void setCSSExclusionsEnabled(in boolean enabled) raises(DOMException); 47 void setCSSExclusionsEnabled(in boolean enabled) raises(DOMException);
50 void setCSSVariablesEnabled(in boolean enabled) raises(DOMException); 48 void setCSSVariablesEnabled(in boolean enabled) raises(DOMException);
51 boolean cssVariablesEnabled() raises(DOMException); 49 boolean cssVariablesEnabled() raises(DOMException);
52 void setCanStartMedia(in boolean enabled) raises(DOMException); 50 void setCanStartMedia(in boolean enabled) raises(DOMException);
53 void setEditingBehavior(in DOMString behavior) raises(DOMException); 51 void setEditingBehavior(in DOMString behavior) raises(DOMException);
54 void setDialogElementEnabled(in boolean enabled) raises(DOMException); 52 void setDialogElementEnabled(in boolean enabled) raises(DOMException);
55 void setLangAttributeAwareFormControlUIEnabled(in boolean enabled); 53 void setLangAttributeAwareFormControlUIEnabled(in boolean enabled);
56 54
57 [Conditional=VIDEO_TRACK] void setShouldDisplayTrackKind(in DOMString kind, in boolean enabled) raises (DOMException); 55 [Conditional=VIDEO_TRACK] void setShouldDisplayTrackKind(in DOMString kind, in boolean enabled) raises (DOMException);
58 [Conditional=VIDEO_TRACK] boolean shouldDisplayTrackKind(in DOMString trackK ind) raises (DOMException); 56 [Conditional=VIDEO_TRACK] boolean shouldDisplayTrackKind(in DOMString trackK ind) raises (DOMException);
59 void setStorageBlockingPolicy(in DOMString policy) raises(DOMException); 57 void setStorageBlockingPolicy(in DOMString policy) raises(DOMException);
60 void setImagesEnabled(in boolean enabled) raises(DOMException); 58 void setImagesEnabled(in boolean enabled) raises(DOMException);
61 void setMinimumTimerInterval(in double intervalInSeconds) raises(DOMExceptio n); 59 void setMinimumTimerInterval(in double intervalInSeconds) raises(DOMExceptio n);
62 void setDefaultVideoPosterURL(in DOMString poster) raises(DOMException); 60 void setDefaultVideoPosterURL(in DOMString poster) raises(DOMException);
63 void setTimeWithoutMouseMovementBeforeHidingControls(in double time) raises( DOMException); 61 void setTimeWithoutMouseMovementBeforeHidingControls(in double time) raises( DOMException);
62 void setUseLegacyBackgroundSizeShorthandBehavior(in boolean enabled) raises( DOMException);
64 }; 63 };
OLDNEW
« no previous file with comments | « page/DOMWindow.idl ('k') | testing/Internals.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698