summaryrefslogtreecommitdiff
path: root/src/parse/properties/border_top_width.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/properties/border_top_width.c')
-rw-r--r--src/parse/properties/border_top_width.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/parse/properties/border_top_width.c b/src/parse/properties/border_top_width.c
deleted file mode 100644
index d71b39c..0000000
--- a/src/parse/properties/border_top_width.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * This file is part of LibCSS.
- * Licensed under the MIT License,
- * http://www.opensource.org/licenses/mit-license.php
- * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
- */
-
-#include <assert.h>
-#include <string.h>
-
-#include "bytecode/bytecode.h"
-#include "bytecode/opcodes.h"
-#include "parse/properties/properties.h"
-#include "parse/properties/utils.h"
-
-/**
- * Parse border-top-width
- *
- * \param c Parsing context
- * \param vector Vector of tokens to process
- * \param ctx Pointer to vector iteration context
- * \param result Pointer to location to receive resulting style
- * \return CSS_OK on success,
- * CSS_NOMEM on memory exhaustion,
- * CSS_INVALID if the input is not valid
- *
- * Post condition: \a *ctx is updated with the next token to process
- * If the input is invalid, then \a *ctx remains unchanged.
- */
-css_error parse_border_top_width(css_language *c,
- const parserutils_vector *vector, int *ctx,
- css_style **result)
-{
- return parse_border_side_width(c, vector, ctx,
- CSS_PROP_BORDER_TOP_WIDTH, result);
-}