Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * This file is part of LibCSS
  3.  * Licensed under the MIT License,
  4.  *                http://www.opensource.org/licenses/mit-license.php
  5.  * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
  6.  */
  7.  
  8. #include "bytecode/bytecode.h"
  9. #include "bytecode/opcodes.h"
  10. #include "select/propset.h"
  11. #include "select/propget.h"
  12. #include "utils/utils.h"
  13.  
  14. #include "select/properties/properties.h"
  15. #include "select/properties/helpers.h"
  16.  
  17. css_error css__cascade_pitch_range(uint32_t opv, css_style *style,
  18.                 css_select_state *state)
  19. {
  20.         /** \todo pitch-range */
  21.         return css__cascade_number(opv, style, state, NULL);
  22. }
  23.  
  24. css_error css__set_pitch_range_from_hint(const css_hint *hint,
  25.                 css_computed_style *style)
  26. {
  27.         UNUSED(hint);
  28.         UNUSED(style);
  29.  
  30.         return CSS_OK;
  31. }
  32.  
  33. css_error css__initial_pitch_range(css_select_state *state)
  34. {
  35.         UNUSED(state);
  36.  
  37.         return CSS_OK;
  38. }
  39.  
  40. css_error css__compose_pitch_range(const css_computed_style *parent,
  41.                 const css_computed_style *child,
  42.                 css_computed_style *result)
  43. {
  44.         UNUSED(parent);
  45.         UNUSED(child);
  46.         UNUSED(result);
  47.  
  48.         return CSS_OK;
  49. }
  50.  
  51.