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

Side by Side Diff: Source/devtools/front_end/CSSMetadata.js

Issue 45733010: Add pointer-events="bounding-box" for svg content. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: make assert more specific Created 7 years 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 | « Source/core/rendering/svg/SVGInlineTextBox.cpp ('k') | Source/devtools/front_end/cm/css.js » ('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) 2010 Nikita Vasilyev. All rights reserved. 2 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved.
3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved. 3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved.
4 * Copyright (C) 2010 Google Inc. All rights reserved. 4 * Copyright (C) 2010 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 "max-width": { values: [ 449 "max-width": { values: [
450 "none" 450 "none"
451 ] }, 451 ] },
452 "caption-side": { values: [ 452 "caption-side": { values: [
453 "top", "bottom" 453 "top", "bottom"
454 ] }, 454 ] },
455 "empty-cells": { values: [ 455 "empty-cells": { values: [
456 "hide", "show" 456 "hide", "show"
457 ] }, 457 ] },
458 "pointer-events": { values: [ 458 "pointer-events": { values: [
459 "none", "all", "auto", "visible", "visiblepainted", "visiblefill", "visi blestroke", "painted", "fill", "stroke" 459 "none", "all", "auto", "visible", "visiblepainted", "visiblefill", "visi blestroke", "painted", "fill", "stroke", "bounding-box"
460 ] }, 460 ] },
461 "letter-spacing": { values: [ 461 "letter-spacing": { values: [
462 "normal" 462 "normal"
463 ] }, 463 ] },
464 "background-clip": { values: [ 464 "background-clip": { values: [
465 "border-box", "content-box", "padding-box" 465 "border-box", "content-box", "padding-box"
466 ] }, 466 ] },
467 "-webkit-font-smoothing": { values: [ 467 "-webkit-font-smoothing": { values: [
468 "none", "auto", "antialiased", "subpixel-antialiased" 468 "none", "auto", "antialiased", "subpixel-antialiased"
469 ] }, 469 ] },
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 970
971 /** 971 /**
972 * @param {string} longhand 972 * @param {string} longhand
973 * @return {?Array.<string>} 973 * @return {?Array.<string>}
974 */ 974 */
975 shorthands: function(longhand) 975 shorthands: function(longhand)
976 { 976 {
977 return this._shorthands[longhand]; 977 return this._shorthands[longhand];
978 } 978 }
979 } 979 }
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/SVGInlineTextBox.cpp ('k') | Source/devtools/front_end/cm/css.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698